/debug_token
此端點會傳回有關指定存取憑證的中繼資料。其中包括發出憑證所適用的用戶、憑證是否仍然有效、憑證過期時間,以及應用程式為指定用戶提供的權限等資料。
有了這些資料,您可採用程式設計方式為大批存取憑證除錯。
GET /v21.0/debug_token?input_token={input-token} 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(
'/debug_token?input_token={input-token}',
'{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(
"/debug_token?input_token={input-token}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/debug_token?input_token={input-token}",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/debug_token?input_token={input-token}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
名稱 | 說明 | 類型 |
---|---|---|
| 正在檢查的存取憑證。必須指定此參數。 |
|
名稱 | 說明 | 類型 |
---|---|---|
| 圍繞結果的資料包裝函式。 |
|
| 此存取憑證適用的應用程式之編號。 |
|
| 此存取憑證適用的應用程式之名稱。 |
|
| 此存取憑證過期時間的時戳。 |
|
| 應用程式的用戶資料存取權限過期時間時戳。 |
|
| 存取憑證是否仍然有效。 |
|
| 此存取憑證發出時間的時戳。 |
|
| 與存取憑證相關的一般中繼資料。可以包含「sso」、「auth_type」、「auth_nonce」等資料 |
|
| 如果是模擬的存取憑證,則為此憑證包含的專頁之編號。 |
|
| 用戶在此存取憑證中向應用程式授予的權限之清單。 |
|
| 用戶在此存取憑證中向應用程式授予的細項權限之清單。如果權限適用於全部事項,則不會顯示目標。 |
|
| 此存取憑證適用的用戶之編號。 |
|
您無法於此關係連線執行這些操作。