/{link-id}
Enlace compartido en Facebook.
GET /v21.0/{link-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(
'/{link-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(
"/{link-id}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{link-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:@"/{link-id}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
Nombre | Descripción | Tipo |
---|---|---|
| Identificador del enlace. |
|
| Hora a la que se publicó el mensaje. |
|
| Descripción del enlace (aparece debajo del texto del enlace). |
|
| Usuario que creó el enlace. | |
| URL al icono del enlace que Facebook muestra en las noticias. |
|
| URL que se compartió. |
|
| Mensaje opcional del usuario acerca de este enlace. |
|
| Nombre del enlace. |
|
| URL a la imagen en miniatura que se usa en la publicación del enlace. |
|
Retirado a partir de la versión 8.0. | Reacciones ME GUSTA, ME ENCANTA, ME ASOMBRA, ME DIVIERTE, ME ENTRISTECE, ME ENFADA, NINGUNA a un enlace. |
|
Utiliza la documentación de la función de compartir para publicar.
No se puede actualizar un enlace mediante la API Graph.