OAuth Protocol
Dynamic client registration
Register a new OAuth client dynamically (RFC 7591)
post/oauth/register
Request body
Example request
{
"client_name": "My OAuth Application",
"redirect_uris": [
"https://example.com/callback"
],
"scope": "admin"
}Response
Client registered successfully
Example response
{
"client_id": "abc123def456"
}