/{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 在動態消息顯示的連結圖示網址。 |
|
| 分享的網址。 |
|
| 用戶選填關於此連結的訊息。 |
|
| 連結名稱。 |
|
| 用於連結貼文中的縮圖圖像網址 |
|
在 8.0 以上版本中停用。 | 對連結的心情回應(讚、大心、哇、哈、嗚、怒、無)。 |
|
請使用分享文件進行發佈。
您無法使用圖形 API 更新連結。