/{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 類型。 |
|
| 附件的檔案名稱。 |
|
| 檔案大小,單位為位元組。 |
|
| 附件的網址。 |
|
您無法使用這個關係連線發佈內容。
您無法使用這個關係連線刪除。
您無法使用這個關係連線更新。