เวอร์ชันของ API กราฟ

/{place-tag-id}

อินสแตนซ์ที่บุคคลกำลังถูกแท็กสถานที่ในรูปภาพ วิดีโอ โพสต์ สถานะ หรือลิงก์

การอ่าน

Graph API Explorer
GET /v21.0/{place-tag-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(
    '/{place-tag-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(
    "/{place-tag-id}",
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);
/* make the API call */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/{place-tag-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:@"/{place-tag-id}"
                                      parameters:params
                                      HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                      id result,
                                      NSError *error) {
    // Handle the result
}];

สิทธิ์การอนุญาต

  • คุณจำเป็นต้องใช้โทเค็นการเข้าถึงผู้ใช้ที่มีสิทธิ์การอนุญาต user_tagged_places ในการดูแท็กต่างๆ ที่เกี่ยวข้องกับผู้ใช้รายนั้น

ช่อง

ชื่อ คำอธิบาย ประเภท

id

ID ของแท็กสถานที่นี้

string

created_time

เวลาที่แท็กถูกสร้างขึ้น

datetime

place

เพจ Facebook ที่เป็นตัวแทนสถานที่

Page

การเผยแพร่

ใช้จุดเชื่อมโยง /{user-id}/feed เพื่อสร้างโพสต์ที่มีการแท็กสถานที่

การลบ

คุณไม่สามารถลบแท็กสถานที่ได้ แต่หากเนื้อหาต้นฉบับที่สร้างแท็กนั้นขึ้นมาถูกลบออก แท็กสถานที่ก็จะถูกลบออกเช่นกัน

การอัพเดต

คุณไม่สามารถอัพเดตโดยใช้โหนดนี้ได้