OAuth2 client credentials are passed in a non standard way #360
-
OAuth2 credentials are passed in a non-standard way to my token endpoint and I get the configuration example
Do you have any ideas what did I do wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi Royi! Nothing non-standard about how the credentials are transferred — encoding
Your token server should know this, but if that's not the case, your workaround seems like a reasonable one to me. |
Beta Was this translation helpful? Give feedback.
Hi Royi!
Nothing non-standard about how the credentials are transferred — encoding
client_id
andclient_secret
in a basic auth Authorization header is in fact the method preferred by the OAuth spec:Your token server should know this, but if that's not the case, your workaround seems like a reasonable one to me.