그래프 API 버전

그래프 API 참고 자료 /{app-id}/permissions

로그인 검수를 통해 승인된 권한입니다.

로그인 검수에 대해 자세히 알아보기

읽기

그래프 API 탐색기
GET /v21.0/app/permissions 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(
    '/app/permissions',
    '{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(
    "/app/permissions",
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);
/* make the API call */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/app/permissions",
    null,
    HttpMethod.GET,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            /* handle the result */
        }
    }
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
                               initWithGraphPath:@"/app/permissions"
                                      parameters:params
                                      HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                      id result,
                                      NSError *error) {
    // Handle the result
}];

권한

  • 해당 앱에 대해 승인된 권한을 가져오려면 앱 액세스 토큰이 필요합니다.

필드

이 에지는 부여된 각 권한을 나타내는 개체 리스트를 반환합니다.

이름 설명 유형

permission

권한 이름입니다.

string

status

권한이 부여되었는지, 사용자가 거부했는지 여부를 나타냅니다.

enum{live}

게시

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

삭제

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

업데이트

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