topic/post.json 概要

トピック投稿

リクエスト

パラメータ 説明
id integer トピックのIDを指定します。更新の場合は*必須です。
community_id integer コミュニティのIDを指定します。新規作成の場合は*必須です。
name *必須 string トピックのタイトルを指定します。
body *必須 string トピックの本文を指定します。

レスポンス

フィールド名 説明
id トピックID
community_id コミュニティID
community_name コミュニティの名前
member トピック所有者メンバーの情報(詳しくは レスポンスの共通仕様 を参照)
name トピックのタイトル
body トピックの本文
created_at トピックの作成時間
images トピックに添付された画像のリスト
editable トピックが編集可能かどうかのフラグ

サンプルリクエスト

$ curl -XPOST -d 'apiKey=cdc4042edf74db746f5bf550039bf50979da2566aa514fc0aac8f57c56398be5&community_id=1&name=bbbbbb&body=bbbbbbbbb' http://example.com/api.php/topic/post.json

サンプルレスポンス

{
    "status":"success",
    "data":{
        "id":"5",
        "community_id":"1",
        "community_name":"all",
        "name":"bbbbbb",
        "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":"bbbbbbbb",
        "created_at":"2012-09-27 14:57:57",
        "ago":"5\u79d2\u4ee5\u5185",
        "editable":false,
        "images":[]
    }
}