/{place-tag-id}
在相片、影片、貼文、近況或連結中標註用戶在某個地標的實例。
GET /v21.0/{place-tag-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(
'/{place-tag-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(
"/{place-tag-id}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{place-tag-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:@"/{place-tag-id}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
user_tagged_places
權限的用戶存取權杖,才能查看該用戶的任何相關標籤。 名稱 | 說明 | 類型 |
---|---|---|
| 此地標標籤的編號。 |
|
| 標籤建立的時間。 |
|
| 代表此地標的 Facebook 粉絲專頁。 |
使用 /{user-id}/feed
關係連線建立標註地標的貼文。
您無法刪除地標標籤,但如果建立該標籤的原始內容被移除,地標標籤也會被移除。
您不能使用此節點進行更新。