그래프 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

첨부 파일 ID.

string

mime_type

파일 MIME 유형.

string

name

첨부 파일의 파일 이름.

string

size

파일 크기(바이트).

int

file_url

첨부 파일의 URL.

string

게시

이 에지를 사용하여 게시할 수 없습니다.

삭제

이 에지를 사용하여 삭제할 수 없습니다.

업데이트

이 에지를 사용하여 업데이트할 수 없습니다.