グラフAPIバージョン

Check-in /{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

チェックイン投稿の「いいね!」。