/{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 版及以上版本中停用。 | 對連結表達的心情:讚好、勁正、嘩、哈哈、抱歉、嬲嬲、無任何心情。 |
|
請使用分享文件來發佈。
您無法使用 Graph API 更新連結。