Contents
ストリーミング
Streaming API はリアルタイムにデータを取得するための API で WebSocket プロトコルで動作します。ストリーミング API サンプル も参照してください。
NOTE: Streaming API は現在ベータバージョンです。
Method
GET
URL
wss://message.typetalk.com/api/v1/streaming
スコープ
topic.read
Message Example
様々な種類のストリーミングメッセージがありますが、これはメッセージが投稿されたときの例です。
{
"type": "postMessage",
"data": {
"topic": {
"id": 208,
"name": "IT Peeps",
"suggestion": "IT Peeps",
"lastPostedAt": "2014-07-25T03:38:45Z",
"createdAt": "2014-06-10T02:32:29Z",
"updatedAt": "2014-06-10T02:32:29Z"
},
"post": {
"id": 333,
"topicId": 208,
"replyTo": null,
"message": "Let's party like it's 1999!",
"account": {
"id": 100,
"name": "jessica",
"fullName": "Jessica Fitzherbert",
"suggestion": "Jessica Fitzherbert",
"imageUrl": "https://typetalk.com/accounts/100/profile_image.png?t=1403577149000",
"createdAt": "2014-06-24T02:32:29Z",
"updatedAt": "2014-06-24T02:32:29Z"
},
"mention": null,
"attachments": [],
"likes": [],
"talks": [],
"links": [],
"createdAt": "2014-07-25T03:38:45Z",
"updatedAt": "2014-07-25T03:38:45Z"
}
}
}
日付のフォーマットは ISO 8601 で、UTC です。 (例 : 2014-01-09T06:20:08Z )