การเช็คอินที่ดำเนินการไปยังเพจที่อิงตามตำแหน่งที่ตั้ง
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
ในการดูการเช็คอินต่างๆ โดยผู้ใช้รายนั้น ชื่อ | คำอธิบาย | ประเภท |
---|---|---|
| แอพที่ทำการเช็คอิน | |
| เวลาที่สร้างการเช็คอิน |
|
| ผู้ใช้ที่ทำการเช็คอิน | |
| ID ที่ไม่ซ้ำกันของการเช็คอิน |
|
| ข้อความที่ผู้ใช้เพิ่มลงในการเช็คอิน |
|
| เพจ Facebook ที่แสดงตำแหน่งการเช็คอิน | |
| บุคคลที่ผู้เขียนแท็กไว้ในการเช็คอิน | |
| ประเภทของอ็อบเจ็กต์นี้ โดยจะส่งคืนเป็น |
|
เราได้เลิกใช้การเผยแพร่การเช็คอินแล้ว เพื่อเปลี่ยนไปใช้การสร้าง Post
ที่มีการแนบตำแหน่ง