/{link-id}
分享到 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
}];
名称 | 说明 | 类型 |
---|---|---|
| 链接编号。 |
|
| 消息发布的时间。 |
|
| 链接的说明(在链接文字下方显示)。 |
|
| 创建链接的用户。 | |
| Facebook 在动态中展示的链接图标网址。 |
|
| 分享的网址。 |
|
| 用户发送的关于此链接的可选消息。 |
|
| 链接名称。 |
|
| 链接帖子中使用的缩略图网址 |
|
已在 v8.0 及以上版本中停用。 | 对链接表达的心情:赞、大爱、哇、笑趴、对不起、怒、无任何心情。 |
|
请使用分享文档来发布。
您无法使用图谱 API 更新链接。