그래프 API 버전

체크인 /{check-in-id}

위치 기반 페이지로 수행한 체크인입니다.

읽기

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

권한

  • 해당 사용자의 체크인을 확인하려면 user_checkins 권한이 있는 사용자 액세스 토큰이 필요합니다.

필드

이름 설명 유형

application

체크인을 수행한 앱입니다.

App

created_time

체크인을 생성한 시점입니다.

datetime

from

체크인을 수행한 사용자입니다.

User

id

체크인의 고유한 ID입니다.

string

message

사용자가 체크인에 추가한 메시지입니다.

string

place

체크인의 위치를 나타내는 Facebook 페이지입니다.

Page

tags

작성자가 체크인에 태그한 사용자입니다.

User[]

type

이 개체의 유형입니다. 항상 checkin을 반환합니다.

string

게시 및 업데이트

체크인의 게시는 사용 중단되고 대신 위치를 첨부하여 Post를 생성합니다.

에지

이름 설명

/comments

체크인 게시물의 댓글입니다.

/likes

체크인 게시물의 좋아요입니다.