서비스 계정 토큰에 학습 보려면 서비스 계정 개요를 참조하세요.
POST https://cloud.mongodb.com/api/oauth/revoke |
이 엔드포인트는 HTTP 요청 경로 매개변수를 사용하지 않습니다.
다음 쿼리 매개변수는 선택 사항입니다.
| | | | |
---|
| | | 응답 본문이 프리티프린트 에 있어야 하는지 여부를 나타내는 플래그입니다. 형식. | |
| | | 응답을 엔벨로프에 래핑할지 여부를 나타내는 플래그입니다. 일부 API 클라이언트는 HTTP 응답 헤더 또는 상태 코드에 액세스할 수 없습니다. 이 문제를 해결하려면 쿼리에서 envelope : true 를 설정합니다. 결과 목록을 반환하는 엔드포인트의 경우 content 객체 는 엔벨로프입니다. Atlas 가 응답 본문에 status 필드 를 추가합니다. | |
다음 예시 에서 {BASE64-AUTH}
을 기본64인코딩된 서비스 계정 클라이언트 ID 및 시크릿으로 바꿉니다. 학습 내용 은 API 요청하기를 참조하세요.
curl -X POST https://cloud.mongodb.com/api/oauth/revoke \ |
-H "Content-Type: application/x-www-form-urlencoded" \ |
-H "Authorization: Basic {BASE64-AUTH}" \ |
-d "token={TOKEN}&token_type_hint=access_token" |
HTTP/1.1 200 OK |
Vary: Accept-Encoding |
Content-Type: application/json |
Strict-Transport-Security: max-age=300 |
Date: {dateInUnixFormat} |
Connection: keep-alive |
Content-Length: {requestLengthInBytes} |
X-MongoDB-Service-Version: gitHash={gitHash}; versionString={ApplicationVersion} |
HTTP/1.1 400 Bad Request |
Date: {dateInUnixFormat} |
Content-Type: application/json |
Content-Length: {requestLengthInBytes} |
Server: mdbws |
Strict-Transport-Security: max-age=31536000; includeSubdomains; |
X-MongoDB-Service-Version: gitHash={gitHash}; versionString={ApplicationVersion} |
... |
HTTP/1.1 401 Unauthorized |
Content-Type: application/json;charset=ISO-8859-1 |
Date: {dateInUnixFormat} |
WWW-Authenticate: Digest realm="MMS Public API", domain="", nonce="{nonce}", algorithm=MD5, op="auth", stale=false |
Content-Length: {requestLengthInBytes} |
Connection: keep-alive |
HTTP/1.1 403 Forbidden |
Vary: Accept-Encoding |
Content-Type: application/json |
Strict-Transport-Security: max-age=300 |
Date: {dateInUnixFormat} |
Connection: keep-alive |
Content-Length: {requestLengthInBytes} |
X-MongoDB-Service-Version: gitHash={gitHash}; versionString={ApplicationVersion} |
... |
HTTP/1.1 429 Too Many Requests |
Retry-After: {retryAfterValue} |
Vary: Accept-Encoding |
Content-Type: application/json |
Strict-Transport-Security: max-age=300 |
Date: {dateInUnixFormat} |
Connection: keep-alive |
Content-Length: {requestLengthInBytes} |
X-MongoDB-Service-Version: gitHash={gitHash}; versionString={ApplicationVersion} |
... |
HTTP/1.1 500 Internal Server Error |
Vary: Accept-Encoding |
Content-Type: application/json |
Strict-Transport-Security: max-age=300 |
Date: {dateInUnixFormat} |
Content-Length: {requestLengthInBytes} |
X-MongoDB-Service-Version: gitHash={gitHash}; versionString={ApplicationVersion} |
... |
HTTP/1.1 503 Service Unavailable |
Retry-After: {retryAfterValue} |
Vary: Accept-Encoding |
Content-Type: application/json |
Strict-Transport-Security: max-age=300 |
Date: {dateInUnixFormat} |
Content-Length: {requestLengthInBytes} |
X-MongoDB-Service-Version: gitHash={gitHash}; versionString={ApplicationVersion} |
... |
이 엔드포인트는 응답 본문을 반환하지 않습니다.
{ |
"error_description": "The provided credentials are not valid.", |
"error": "invalid_request" |
} |
{ |
"error_description": "Invalid grant type.", |
"error": "unsupported_grant_type" |
} |
{ |
"error_description": "Invalid grant.", |
"error": "invalid_grant" |
} |
{ |
"error_description": "Invalid credentials provided.", |
"error": "invalid_client" |
} |
{ |
"error_description": "IP access list validation failed for the service account.", |
"error": "access_denied" |
} |
{ |
"error_description": "Resource {URL} is limited to 10 requests every 1 minutes.", |
"error": "rate_limited" |
} |
{ |
"error_description": "Unexpected error.", |
"error": "server_error" |
} |