그래프 API 버전

/{app-id}/app_link_hosts

이 앱이 만든 앱 링크 개체입니다. applinks.org 사이트에 있는 앱 링크에 대해 자세히 알아보세요.

읽기

그래프 API 탐색기
GET /v21.0/app/app_link_hosts 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(
    '/app/app_link_hosts',
    '{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 */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/app/app_link_hosts",
    null,
    HttpMethod.GET,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            /* handle the result */
        }
    }
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
                               initWithGraphPath:@"/app/app_link_hosts"
                                      parameters:params
                                      HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                      id result,
                                      NSError *error) {
    // Handle the result
}];

권한

  • 앱에 대한 앱 액세스 토큰은 필수입니다.

응답

앱 링크 호스트 개체의 리스트가 반환됩니다.

게시

게시는 지원되지 않습니다.

삭제

/app-link-host 노드를 사용하여 앱 링크 호스트 개체를 삭제할 수 있습니다.

업데이트

/app-link-host 노드를 사용하여 앱 링크 호스트 개체를 업데이트할 수 있습니다.