Oidc provider client registration

vimal_adithan

Vimal

Posted on March 25, 2024

Oidc provider client registration

curl -X POST \
-H "Content-Type: application/json" \
-d '{
"client_name": "My Client",
"redirect_uris": ["https://example.com/callback"],
"grant_types": ["authorization_code", "refresh_token"],
"response_types": ["code"],
"token_endpoint_auth_method": "client_secret_basic"
}' \
https://your-oidc-provider.com/reg

💖 💪 🙅 🚩
vimal_adithan
Vimal

Posted on March 25, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related