/{link-id}
Un 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 |
---|---|---|
| El identificador del enlace. |
|
| El momento en que se publicó el mensaje. |
|
| Una descripción del enlace (aparece debajo del texto del enlace). |
|
| El usuario que creó el enlace. | |
| Una URL al ícono del enlace que Facebook muestra en el feed. |
|
| La URL que se compartió. |
|
| El mensaje opcional del usuario sobre este enlace. |
|
| El nombre del enlace. |
|
| Una URL a la imagen en miniatura que se usa en la publicación del enlace. |
|
Obsoleto a partir de la versión 8.0. | Las reacciones, Me gusta, Me encanta, Me divierte, Me asombra, Me entristece, Me enoja o ninguna para un enlace. |
|
Usa la documentación sobre contenido compartido para realizar la publicación.
No puedes actualizar un enlace con la API Graph.