トピックコメント投稿
パラメータ | 値 | 説明 |
---|---|---|
community_event_id *必須 | integer | トピックのIDを指定します |
body *必須 | string | コメントの本文を指定します。 |
フィールド名 | 説明 |
---|---|
id | コメントID |
member | 投稿したメンバーの情報(詳しくは レスポンスの共通仕様 を参照) |
body | 投稿したトピックの本文 |
created_at | 投稿時間 |
deletable | コメントを削除可能かどうかのフラグ |
$ curl -XPOST -d 'apiKey=cdc4042edf74db746f5bf550039bf50979da2566aa514fc0aac8f57c56398be5&community_event_id=1&body=ccccc' http://example.com/api.php/event_comment/post.json
{ "status":"success", "data":{ "id":"3", "body":"ccccc", "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 }, "created_at":"2012-09-25 10:40:33", "deletable":true } }