그래프 API 버전

/{object-id}/sharedposts

이 참고 자료에서는 여러 가지 그래프 API 노드에서 일반적으로 사용하는 /sharedposts 에지에 대해 설명합니다. 각 노드의 구조와 동작은 동일합니다. 다음 개체에는 sharedposts 에지가 있습니다.

  • PagePost
  • 게시물
  • 사용자

읽기

권한

  • user_posts 권한이 있는 사용자 액세스 토큰으로 공개 범위 설정을 고려한 후 게시물을 볼 수 있는 사용자용입니다. (a) 앱이 게시물을 생성했거나 (b) 게시물 작성자가 user_posts 권한을 앱에 부여한 경우 게시물이 반환됩니다.

기능 권한

이름설명

페이지 전체 공개 콘텐츠 액세스

필수적인 기능 권한입니다.

제한 사항

  • /{album-id}/sharedposts를 사용할 수 없습니다.
  • GET /{photo-id}/sharedposts 엔드포인트는 v8.0+에서 사용 중단됩니다.

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

필드

각 공유를 나타내는 게시물 개체의 리스트.

게시하기

그래프 API를 사용하여 개체의 공유를 공개할 수 없습니다.

삭제

그래프 API를 사용하여 개체의 공유를 삭제할 수 없습니다.