topic_comment/post.json 概要

トピックコメント投稿

リクエスト

パラメータ 説明
community_topic_id *必須 integer トピックのIDを指定します
body *必須 string コメントの本文を指定します。

レスポンス

フィールド名 説明
id コメントID
member 投稿したメンバーの情報(詳しくは レスポンスの共通仕様 を参照)
body 投稿したトピックの本文
created_at 投稿時間
deletable コメントを削除可能かどうかのフラグ

サンプルリクエスト

$ curl -XPOST -d 'apiKey=cdc4042edf74db746f5bf550039bf50979da2566aa514fc0aac8f57c56398be5&community_topic_id=1&body=ccccc' http://example.com/api.php/topic_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
    }
}