Created
May 16, 2016 06:47
-
-
Save daipresents/bc5b98d192f2092fa785b17fc51fccf1 to your computer and use it in GitHub Desktop.
RedmineのREST APIを使ってみる
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
At the time of writing, the API is only available in trunk (see r3310, r3313). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
accept_key_auth :index, :show, :changes, :new, :update, :destroy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Form authenticity token is missing or is invalid. API calls must include a proper Content-type header (text/xml or text/json). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<issue> | |
<project_id>rest</project_id> | |
<tracker_id>3</tracker_id> | |
<status_id>2</status_id> | |
<priority_id>5</priority_id> | |
<assigned_to_id>1</assigned_to_id> | |
<subject>こんにちは世界</subject> | |
<description>ありがとう世界</description> | |
<start_date>2010-03-01</start_date> | |
<due_date>2010-03-02</due_date> | |
<done_ratio>10</done_ratio> | |
<estimated_hours>10.5</estimated_hours> | |
<custom_field_values> | |
<1>カスタムなテキストフィールド</1> | |
<2>11111</2> | |
<3>0.33</3> | |
<4>ううう</4> | |
<5>1978-05-08</5> | |
<6>1</6> | |
</custom_field_values> | |
</issue> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<issue> | |
<project_id>rest</project_id> | |
<tracker_id>2</tracker_id> | |
<status_id>3</status_id> | |
<priority_id>7</priority_id> | |
<assigned_to_id>3</assigned_to_id> | |
<subject>こんにちは世界2</subject> | |
<description>ありがとう世界2</description> | |
<start_date>2010-03-03</start_date> | |
<due_date>2010-03-04</due_date> | |
<done_ratio>20</done_ratio> | |
<estimated_hours>20.5</estimated_hours> | |
<custom_field_values> | |
<1>カスタムなテキストフィールド2</1> | |
<2>111112</2> | |
<3>0.332</3> | |
<4>いいい</4> | |
<5>1978-05-09</5> | |
<6>0</6> | |
</custom_field_values> | |
</issue> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<errors> | |
<error>優先度 を入力してください。</error> | |
<error>カスタムなリストフィールド は一覧にありません。</error> | |
</errors> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment