/{message-id}
/attachments
An eine Nachricht angehängte Dateien. Das ist ein Endpunkt nur für Seiten.
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
}];
Für diese Edge ist ein Seiten-Zugriffsschlüssel mit den folgenden Berechtigungen erforderlich:
pages_messaging
Apps im Entwicklungsmodus können nur an Personen Nachrichten senden, die in der App eine Rolle haben.
Name | Beschreibung | Typ |
---|---|---|
| Die Anhangs-ID |
|
| Der MIME-Typ der Datei |
|
| Der Dateiname des Anhangs |
|
| Die Dateigröße in Bytes |
|
| Die URL des Anhangs |
|
Mit dieser Edge ist das Veröffentlichen nicht möglich.
Mit dieser Edge ist das Löschen nicht möglich.
Mit dieser Edge ist das Aktualisieren nicht möglich.