グラフ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

この場所タグのID。

string

created_time

タグ作成日時。

datetime

place

この場所を表すFacebookページ。

Page

公開

場所タグを付けた投稿を作成するには、/{user-id}/feedエッジを使います。

削除

場所タグを削除することはできませんが、そのタグを作成した元のコンテンツが削除されると、場所タグも削除されます。

更新

このノードを使用して更新することはできません。