Response Type
from aioauth import responses
Response objects used throughout the project.
- class ResponseTypeBase(storage: TStorage)[source]
Base response type that all other exceptions inherit from.
- class ResponseTypeToken(storage: TStorage)[source]
Response type that contains a token.
- async create_authorization_response(request: TRequest, client: Client) TokenResponse [source]
- class ResponseTypeAuthorizationCode(storage: TStorage)[source]
Response type that contains an authorization code.
- async create_authorization_response(request: TRequest, client: Client) AuthorizationCodeResponse [source]