Graph API-Version

Graph API-Referenz /{message-id}/attachments

An eine Nachricht angehängte Dateien. Das ist ein Endpunkt nur für Seiten.

Lesen

Graph API Explorer
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
}];

Berechtigungen

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.

Felder

Name Beschreibung Typ

id

Die Anhangs-ID

string

mime_type

Der MIME-Typ der Datei

string

name

Der Dateiname des Anhangs

string

size

Die Dateigröße in Bytes

int

file_url

Die URL des Anhangs

string

Veröffentlichen

Mit dieser Edge ist das Veröffentlichen nicht möglich.

Löschen

Mit dieser Edge ist das Löschen nicht möglich.

Aktualisieren

Mit dieser Edge ist das Aktualisieren nicht möglich.