圖形 API 版本

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

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

讀取

圖形 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

發佈

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

刪除

您無法使用這個關係連線刪除。

更新

您無法使用這個關係連線更新。