In the Authorization server, the methodcreate_token_response called by the token endpoint processes a request object by has default request parameter set to None and nothing is passed to its call in the token endpoint in the routes file.
How can it make a response token out of a none request body?
In the Authorization server, the method
create_token_response
called by the token endpoint processes a request object by has default request parameter set toNone
and nothing is passed to its call in the token endpoint in the routes file. How can it make a response token out of a none request body?