/{conversation-id}
利用者と、FacebookページまたはInstagramプロアカウントとの間のMessengerスレッド。
GET /v21.0/{conversation-id} HTTP/1.1
Host: graph.facebook.com
/* PHP SDK v5.0.0 */
/* make the API call */
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->get(
'/{conversation-id}',
'{access-token}'
);
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
$graphNode = $response->getGraphNode();
/* handle the result */
/* make the API call */
FB.api(
"/{conversation-id}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{conversation-id}",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{conversation-id}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
MESSAGING
タスクを実行できる人がリクエストしたページアクセストークンInstagramメッセージの場合は、以下も必要です。
名前 | 説明 |
---|---|
| スレッドのID |
| スレッド内のメッセージ |
ページメッセージのみ
ページメッセージのみ
Instagramメッセージのみ | スレッド内の参加者 利用者のInstagramスコープIDまたはページスコープID、あなたのInstagramプロアカウントのInstagram IDまたはページID。 利用者またはページのメールアドレス 利用者またはページの名前 利用者のInstagramユーザー名、またはあなたのInstagramプロアカウントのInstagramユーザー名 |
| 最後のメッセージがスレッドに追加された時刻 |
スレッド内の特定のメッセージについての情報を取得するには、メッセージエンドポイントにリクエストを送信します。
このエッジを使って削除することはできません。
このエッジを使って更新することはできません。
名前 | 説明 | 公開する対象 |
---|---|---|
スレッド内のすべてのメッセージのリスト | 返信(ページによる返信のみ) |