本文へスキップ

OIDC 形式の userinfo を取得

GET
/oauth/userinfo

OIDC 形式に沿った userinfo ドキュメントを返します。

認証

CoinpostOAuth

OAuth 2.0 authorization code flow with PKCE.

authorizationCode Flow
Authorization URL"/oauth/authorize"
Token URL"/oauth/token"
Scopes:
  • "user.public"Read public profile fields.
  • "user.full"Read the full user profile.

レスポンス

Userinfo document

application/json
JSON
{
  
"sub": "string",
  
"name": "string",
  
"picture": "string",
  
"uuid": "string",
  
"email": "string",
  
"email_verified": true
}

Playground

認証

サンプル