图谱 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

发布

您无法使用此连线发布对话。

删除

您无法使用此连线进行删除。

更新

您无法使用此连线更新状态。