/{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 类型。 |
|
| 附件的文件名。 |
|
| 文件的大小,以字节为单位。 |
|
| 附件的网址。 |
|
您无法使用此连线发布对话。
您无法使用此连线进行删除。
您无法使用此连线更新状态。