/{place-tag-id}
Una instancia de una persona a la que se etiqueta en un lugar, ya sea en una foto, un video, una publicación, un estado o un enlace.
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
para ver las etiquetas relacionadas con esa persona. Nombre | Descripción | Tipo |
---|---|---|
| El identificador de esta etiqueta de lugar. |
|
| El momento en el que se creó la etiqueta. |
|
| La página de Facebook que representa el lugar. |
Usa el perímetro /{user-id}/feed
para crear publicaciones con etiquetas de lugar.
Las etiquetas de lugar no se pueden eliminar. Sin embargo, si se elimina el contenido original que creó la etiqueta de lugar, esta también se eliminará.
No puedes usar este nodo para realizar actualizaciones.