Versi Graph API

/{place-tag-id}

Contoh seseorang ditandai di suatu tempat dalam foto, video, postingan, status, atau tautan.

Membaca

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
}];

Izin

  • Token akses pengguna dengan izin user_tagged_places diperlukan untuk melihat semua tanda yang melibatkan orang itu.

Kolom

Nama Deskripsi Jenis

id

ID tanda tempat ini.

string

created_time

Kapan tanda tersebut dibuat.

datetime

place

Halaman Facebook yang mewakili tempat tersebut.

Page

Penerbitan

Gunakan edge /{user-id}/feed untuk membuat postingan dengan tempat yang ditandai.

Menghapus

Anda tidak dapat menghapus tanda tempat, namun jika konten asli yang membuat tanda dihapus, tanda tempat juga akan dihapus.

Memperbarui

Anda tidak dapat memperbarui dengan node ini.