Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Bindings Authorization part of The OAuth 2.0 Authorization Framework RFC6749 https://www.rfc-editor.org/rfc/rfc6749
Synopsis
Authorization Request Errors
data AuthorizationResponseError Source #
Authorization Code Grant Error Responses https://tools.ietf.org/html/rfc6749#section-4.1.2.1
I found hard time to figure a way to test the authorization error flow
When anything wrong in /authorize
request, it will stuck at the Provider page
hence no way for this library to parse error response.
In other words, /authorize
ends up with 4xx or 5xx.
Revisit this whenever find a case OAuth2 provider redirects back to Relying party with errors.
Instances
data AuthorizationResponseErrorCode Source #
InvalidRequest | |
UnauthorizedClient | |
AccessDenied | |
UnsupportedResponseType | |
InvalidScope | |
ServerError | |
TemporarilyUnavailable | |
UnknownErrorCode Text |
URLs
authorizationUrlWithParams :: QueryParams -> OAuth2 -> URI Source #
Prepare the authorization URL. Redirect to this URL asking for user interactive authentication.
Since: 2.6.0