OAuth 인가 서버 메타데이터
curl --request GET \
--url https://api.headlesscommerce.io/v1/.well-known/oauth-authorization-server{
"issuer": "<string>",
"authorization_endpoint": "<string>",
"token_endpoint": "<string>",
"registration_endpoint": "<string>",
"scopes_supported": [
"<string>"
],
"response_types_supported": [
"<string>"
],
"grant_types_supported": [
"<string>"
],
"token_endpoint_auth_methods_supported": [
"<string>"
],
"code_challenge_methods_supported": [
"<string>"
],
"service_documentation": "<string>"
}OAuth 2.1
OAuth 인가 서버 메타데이터
RFC 8414에 따른 OAuth 2.0 인가 서버 메타데이터를 반환합니다.
지원하는 엔드포인트, 스코프, 인가 유형 및 PKCE 방식을 포함합니다.
GET
/
.well-known
/
oauth-authorization-server
OAuth 인가 서버 메타데이터
curl --request GET \
--url https://api.headlesscommerce.io/v1/.well-known/oauth-authorization-server{
"issuer": "<string>",
"authorization_endpoint": "<string>",
"token_endpoint": "<string>",
"registration_endpoint": "<string>",
"scopes_supported": [
"<string>"
],
"response_types_supported": [
"<string>"
],
"grant_types_supported": [
"<string>"
],
"token_endpoint_auth_methods_supported": [
"<string>"
],
"code_challenge_methods_supported": [
"<string>"
],
"service_documentation": "<string>"
}응답
200 - application/json
서버 메타데이터
⌘I