圖形 API 版本

/{app-id}/roles

針對 Facebook 應用程式定義的開發人員角色。

讀取

圖形 API 測試工具
GET /v21.0/{app-id}/roles 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-id}/roles',
    '{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-id}/roles",
    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-id}/roles"
                                      parameters:params
                                      HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                                      id result,
                                      NSError *error) {
    // Handle the result
}];

必備條件

  • 必須具備用於應用程式的應用程式存取權杖。

欄位

名稱 說明 類型

app_id

被要求的應用程式編號。

string

user

在應用程式中擁有角色的用戶編號。

string

role

該用戶具有的角色名稱。

enum{administrators, developers, testers, insights users}

發佈

您無法在這個端點執行此操作。

更新

您無法在這個端點執行此操作。

刪除

您無法在這個端點執行此操作。