Saltar al contenido
Guías

Registrar cliente OAuth

Registra dinámicamente un cliente OAuth y devuelve sus credenciales y metadata pública.

POST/connect/register

Registra dinámicamente un cliente OAuth y devuelve sus credenciales y metadata pública.

Cuerpo de la solicitud

application/json

Definiciones TypeScript

Usa esta definición en TypeScript.

Cuerpo de la respuesta

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X POST "https://example.com/connect/register" \  -H "Content-Type: application/json" \  -d '{    "client_name": "Example resource",    "redirect_uris": [      "example"    ],    "token_endpoint_auth_method": "replace_with_the_issued_token",    "grant_types": [      "example"    ],    "response_types": [      "example"    ],    "application_type": "example"  }'
{  "client_id": "app_replace_with_your_client_id",  "client_name": "Example resource",  "redirect_uris": [    "example"  ],  "token_endpoint_auth_method": "replace_with_the_issued_token",  "grant_types": [    "example"  ],  "response_types": [    "example"  ],  "application_type": "example"}