diary_comment/search.json 概要

コメント一覧

リクエスト

パラメータ 説明
diary_id *必須 integer コメントを取得したい記事のIDを指定します。

レスポンス

フィールド名 説明
id コメントの記事ID
member 投稿したメンバーの情報(詳しくは レスポンスの共通仕様 を参照)
diary_id コメント投稿先の日記ID
number コメントの表示順
body コメントの本文
ago コメントの投稿時間を経過時間で表したもの(何秒前、何分前など)
created_at コメントの作成時間
deletable コメントの削除可能フラグ
images コメントに添付された画像の配列

サンプルリクエスト

$ curl http://example.com/api.php/diary_comment/search.json?apiKey=a6a0fb34aeb63036883323875c4d5103a88bd266b1cb5cfcbef3df276a9f36dc&diary_id=5

サンプルレスポンス

{
    "status":"success",
    "data":{
        "comments":[{
            "id":"1",
            "diary_id":"5",
            "number":"1",
            "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":"dsfdsfsd",
            "ago":"2012\u5e749\u67087\u65e5 16:29",
            "created_at":"2012-09-07 16:29:58",
            "images":[],
            "deletable":true
        },
        {
            "id":"3",
            "diary_id":"5",
            "number":"2",
            "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":"fdsfds",
            "ago":"2012\u5e749\u670810\u65e5 10:54",
            "created_at":"2012-09-10 10:54:34",
            "images":[],
            "deletable":true
        },
        {
            "id":"17",
            "diary_id":"5",
            "number":"3",
            "member":{
                "id":"2",
                "profile_image":"http:\/\/example.com\/images\/no_image.gif",
                "screen_name":"Member2",
                "name":"Member2",
                "profile_url":"\/member\/2","friend":false,
                "blocking":false,"self":false,
                "friends_count":0,
                "self_introduction":null
            },
            "body":"ccccccccccc",
            "ago":"about 21 hours ago",
            "created_at":"2012-09-10 14:31:54",
            "images":[],
            "deletable":true
        }]
    }
}