圖形 API 版本

/{place-tag-id}

在相片、影片、貼文、近況或連結中標註用戶在某個地標的實例。

讀取

圖形 API 測試工具
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

此地標標籤的編號。

string

created_time

標籤建立的時間。

datetime

place

代表此地標的 Facebook 粉絲專頁。

Page

發佈

使用 /{user-id}/feed 關係連線建立標註地標的貼文。

刪除

您無法刪除地標標籤,但如果建立該標籤的原始內容被移除,地標標籤也會被移除。

更新

您不能使用此節點進行更新。