/{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 傳送訊息功能,您還需要符合以下條件:
名稱 | 說明 |
---|---|
| 對話編號 |
| 對話中的訊息 |
僅限專頁上的訊息功能
僅限專頁上的訊息功能
僅限 Instagram 上的訊息功能 | 對話的參與者 用戶的 Instagram 範圍編號或專頁範圍編號、您 Instagram 專業帳戶的 Instagram 編號或專頁編號。 用戶或專頁的電郵地址 用戶或專頁的名稱 用戶的 Instagram 用戶名稱或您的 Instagram 專業帳戶 |
| 最近一則訊息加入對話的時間 |
若要取得對話內特定訊息的資料,請向訊息端點傳送要求。
您無法使用此關係連線刪除內容。
您無法使用此關係連線作出更新。
名稱 | 說明 | 用於發佈 |
---|---|---|
對話中全部訊息的清單 | 回覆(僅限專頁) |