Graph API 版本

Graph API 參考資料 /{message-id}/attachments

附加至訊息的檔案。此端點僅適用於專頁。

讀取

Graph API 測試工具
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

處於開發模式的應用程式會受到限制,只可向具有相關應用程式內角色的用戶傳送訊息。

欄位

名稱 說明 類型

id

附件編號。

string

mime_type

檔案的 MIME 類型。

string

name

附件檔案名稱。

string

size

檔案大小,以位元組為單位。

int

file_url

附件網址。

string

發佈

您無法使用此關係連線發佈內容。

刪除

您無法使用此關係連線刪除內容。

更新

您無法使用此關係連線作出更新。