There was an error while loading. Please reload this page.
内容の書き換えが進行中です。
HTTPリクエストを送信することによって各種操作を行う基本的なAPIです。 AccessTokenを利用することで付与(Grant)されているスコープ範囲の操作が可能になります。必要なスコープについての詳細は各エンドポイントの項目を参照してください。
目次
{ "createdAt": 1500702964, "description": "コーヒーが好きです", "followersCount": 7, "followingsCount": 16, "iconFileId": "5a813952bf8f203120a6b189", "id": "5972e8f4d61aea367cbf6972", "name": "香風智乃", "postingsCount": { "chat": 173 }, "screenName": "chino123" }
{ "createdAt": 1542525441, "id": "5bf1120154d6cf2a485bcb6e", "text": "コーヒー1杯で1回です", "type": "chat", "user": { "Userオブジェクトが入ります" } }
/posting/create-chat
post.write
POST /posting/create-chat { "text": "コーヒー1杯で1回です" }
status: 200 OK
{ "resultType": "posting", "result": { "createdAt": 1524890102, "id": "5ae3f9f630f9d22b8499f162", "text": "コーヒー1杯で1回です", "type": "chat", "user": { "createdAt": 1500702964, "description": "コーヒーが好きです", "followersCount": 3, "followingsCount": 5, "iconFileId": "5a813952bf8f203120a6b189", "id": "5972e8f4d61aea367cbf6972", "name": "香風智乃", "postingsCount": { "chat": 173 }, "screenName": "chino123" } } }
/posting/timeline/home/list
post.read
user.read
POST /posting/timeline/home/list {"userId": "5972e8f4d61aea367cbf6972", "limit": 5}
{ "resultType": "postings", "result": [{ "postingオブジェクト" }, { "postingオブジェクト" }, ...] }
[執筆中]