/{message-id}
/attachments
附加至訊息的檔案。此端點僅適用於專頁。
GET /v21.0/{message-id}/attachments 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(
'/{message-id}/attachments',
'{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(
"/{message-id}/attachments",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{message-id}/attachments",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{message-id}/attachments"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
此關係連線需要使用包含下列權限的專頁存取憑證:
pages_messaging
處於開發模式的應用程式會受到限制,只可向具有相關應用程式內角色的用戶傳送訊息。
名稱 | 說明 | 類型 |
---|---|---|
| 附件編號。 |
|
| 檔案的 MIME 類型。 |
|
| 附件檔案名稱。 |
|
| 檔案大小,以位元組為單位。 |
|
| 附件網址。 |
|
您無法使用此關係連線發佈內容。
您無法使用此關係連線刪除內容。
您無法使用此關係連線作出更新。