/{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
關係連線來建立帶有地點標籤的帖子。
雖然您無法刪除地點標籤,但如果建立標籤的初始內容被移除,地點標籤也會相應被移除。
您無法使用此節點作出更新。