Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Network.OAuth.OAuth2.AuthorizationRequest
Contents
Description
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.
Constructors
AuthorizationResponseError | |
Instances
FromJSON AuthorizationResponseError Source # | |
Defined in Network.OAuth.OAuth2.AuthorizationRequest Methods parseJSON :: Value -> Parser AuthorizationResponseError # parseJSONList :: Value -> Parser [AuthorizationResponseError] # | |
Show AuthorizationResponseError Source # | |
Defined in Network.OAuth.OAuth2.AuthorizationRequest Methods showsPrec :: Int -> AuthorizationResponseError -> ShowS # show :: AuthorizationResponseError -> String # showList :: [AuthorizationResponseError] -> ShowS # | |
Eq AuthorizationResponseError Source # | |
Defined in Network.OAuth.OAuth2.AuthorizationRequest Methods (==) :: AuthorizationResponseError -> AuthorizationResponseError -> Bool # (/=) :: AuthorizationResponseError -> AuthorizationResponseError -> Bool # |
data AuthorizationResponseErrorCode Source #
Constructors
InvalidRequest | |
UnauthorizedClient | |
AccessDenied | |
UnsupportedResponseType | |
InvalidScope | |
ServerError | |
TemporarilyUnavailable | |
UnknownErrorCode Text |
Instances
URLs
authorizationUrlWithParams :: QueryParams -> OAuth2 -> URI Source #
Prepare the authorization URL. Redirect to this URL asking for user interactive authentication.
Since: 2.6.0