Graph API 版本

簽到/{check-in-id}

透過按地點建立的專頁簽到。

讀取

Graph 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

簽到的不重複編號。

string

message

用戶加至簽到的訊息。

string

place

代表簽到地點的 Facebook 專頁。

Page

tags

作者在簽到時標註的用戶。

User[]

type

此物件的類型;一律傳回 checkin

string

發佈與更新

已停用簽到發佈功能,並改用附加的地點建立 Post

關係連線

名稱 說明

/comments

簽到帖子上的回應。

/likes

簽到帖子的讚好。