You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When selecting Token Endpoint Auth Method="none" a client secret is still issued. According to the documentation nonemeans that the client is public and has no secret.
does not work with grant password. But If I pass within the body client_id it works. However, according to RFC6749 the body should only contain grant_type, username, password and scope
I might have missed something...
Btw, Should I public client have its own id?
The text was updated successfully, but these errors were encountered:
When selecting
Token Endpoint Auth Method="none"
a client secret is still issued. According to the documentationnone
means that the client is public and has no secret.Once the issue is solved,
Endpoint
@bp.route('/oauth/token', methods=['POST']) def issue_token(): return authorization.create_token_response()
does not work with grant
password
. But If I pass within the bodyclient_id
it works. However, according to RFC6749 the body should only containgrant_type
,username
,password
andscope
I might have missed something...
Btw, Should I public client have its own id?
The text was updated successfully, but these errors were encountered: