/{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
권한이 있는 사용자 액세스 토큰이 필요합니다. 이름 | 설명 | 유형 |
---|---|---|
| 이 장소 태그의 ID입니다. |
|
| 태그가 생성된 시점입니다. |
|
| 장소를 나타내는 Facebook 페이지입니다. |
/{user-id}/feed
에지를 사용하여 장소가 태그된 게시물을 만듭니다.
장소 태그는 삭제할 수 없지만 이 태그를 만든 원본 콘텐츠를 삭제할 경우 장소 태그도 삭제됩니다.
이 노드를 사용하여 업데이트할 수 없습니다.