Graph API 版本

/{place-tag-id}

在相片、影片、帖子、動態或連結中標註某用戶身處某地點的實例。

讀取

Graph 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 關係連線來建立帶有地點標籤的帖子。

刪除

雖然您無法刪除地點標籤,但如果建立標籤的初始內容被移除,地點標籤也會相應被移除。

更新

您無法使用此節點作出更新。