回答編集履歴
3
誤字の修正
answer
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
なぜか、プロジェクトを含めると
|
1
|
+
なぜか、プロジェクトを含めると全件ヒットしてしまい、カスタムフィールドの条件で絞り込まれません。
|
2
2
|
curl -v --insecure --user user:password https://localhost/redmine/issues.json?project_id=4&cf_1=http://www.example1.com&key=API KEY
|
3
3
|
|
4
|
-
検索条件をカスタムフィールドのみにしたらうまく行きました。
|
4
|
+
検索条件をカスタムフィールドのみにしたらうまく行きましたが、複数プロジェクトを検索してヒットしてしまいます。
|
5
5
|
curl -v --insecure --user user:password https://localhost/redmine/issues.json?cf_1=http://www.example1.com&key=API KEY
|
6
6
|
|
7
7
|
そこで、以下のようにリンク部分で指定したら、特定のプロジェクトのカスタムフィールドで絞り込めました。
|
2
内容の追加
answer
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
+
なぜか、プロジェクトを含めるとなぜか全件ヒットしてしまいますね。
|
2
|
+
curl -v --insecure --user user:password https://localhost/redmine/issues.json?project_id=4&cf_1=http://www.example1.com&key=API KEY
|
3
|
+
|
1
4
|
検索条件をカスタムフィールドのみにしたらうまく行きました。
|
2
|
-
|
5
|
+
curl -v --insecure --user user:password https://localhost/redmine/issues.json?cf_1=http://www.example1.com&key=API KEY
|
3
6
|
|
7
|
+
そこで、以下のようにリンク部分で指定したら、特定のプロジェクトのカスタムフィールドで絞り込めました。
|
4
|
-
curl -v --insecure --user user:password https://localhost/redmine/issues.json?cf_1=http://www.example1.com&key=API KEY
|
8
|
+
curl -v --insecure --user user:password https://localhost/redmine/projects/プロジェクト名/issues.json?cf_1=http://www.example1.com&key=API KEY
|
1
内容の修正
answer
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
検索条件
|
1
|
+
検索条件をカスタムフィールドのみにしたらうまく行きました。
|
2
|
-
*プロジェクトを
|
2
|
+
*プロジェクトを含めるとなぜか全件ヒットしてしまいますね。
|
3
3
|
|
4
|
-
curl -v --insecure --user user:password https://localhost/redmine/issues.json?cf_1=http://www.example1.com&
|
4
|
+
curl -v --insecure --user user:password https://localhost/redmine/issues.json?cf_1=http://www.example1.com&key=API KEY
|