コメント投稿
パラメータ | 値 | 説明 |
---|---|---|
diary_id *必須 | integer | コメント投稿先の記事IDを指定します。 |
body *必須 | string | コメントの本文を指定します。 |
フィールド名 | 説明 |
---|---|
id | 投稿したコメントのID |
diary_id | 投稿したコメントの記事ID |
number | 投稿したコメントの順番 |
member | 投稿したメンバーの情報(詳しくは レスポンスの共通仕様 を参照) |
body | 投稿したコメントの本文 |
ago | コメントの投稿時間を経過時間で表したもの(何秒前、何分前など) |
created_at | 投稿したコメントの日時 |
deletable | 投稿したコメントの削除可能フラグ |
$ curl -XPOST -d 'apiKey=a6a0fb34aeb63036883323875c4d5103a88bd266b1cb5cfcbef3df276a9f36dc&diary_id=6&body=コメント' http://example.com/api.php/diary_comment/post.json
{ "status": "success", "data":{ "id":"36", "diary_id":"6", "number":16, "member":{ "id":"1", "profile_image":"http:\/\/example.com\/images\/no_image.gif", "screen_name":"OpenPNE\u541b", "name":"OpenPNE\u541b", "profile_url":"\/member\/1","friend":false, "blocking":false, "self":true, "friends_count":0, "self_introduction":null }, "body":"コメント", "ago":"less than 5 seconds ago", "created_at":"2012-09-11 11:20:41", "deletable":true } }