hoauth2-1.8.7: Haskell OAuth2 authentication client

Safe HaskellNone
LanguageHaskell2010

Network.OAuth.OAuth2.AuthorizationRequest

Synopsis

Documentation

data Errors Source #

Authorization Code Grant Error Responses https://tools.ietf.org/html/rfc6749#section-4.1.2.1 Implicit Grant Error Responses https://tools.ietf.org/html/rfc6749#section-4.2.2.1

Instances
Eq Errors Source # 
Instance details

Defined in Network.OAuth.OAuth2.AuthorizationRequest

Methods

(==) :: Errors -> Errors -> Bool

(/=) :: Errors -> Errors -> Bool

Show Errors Source # 
Instance details

Defined in Network.OAuth.OAuth2.AuthorizationRequest

Methods

showsPrec :: Int -> Errors -> ShowS

show :: Errors -> String

showList :: [Errors] -> ShowS

Generic Errors Source # 
Instance details

Defined in Network.OAuth.OAuth2.AuthorizationRequest

Associated Types

type Rep Errors :: Type -> Type

Methods

from :: Errors -> Rep Errors x

to :: Rep Errors x -> Errors

FromJSON Errors Source # 
Instance details

Defined in Network.OAuth.OAuth2.AuthorizationRequest

Methods

parseJSON :: Value -> Parser Errors

parseJSONList :: Value -> Parser [Errors]

ToJSON Errors Source # 
Instance details

Defined in Network.OAuth.OAuth2.AuthorizationRequest

Methods

toJSON :: Errors -> Value

toEncoding :: Errors -> Encoding

toJSONList :: [Errors] -> Value

toEncodingList :: [Errors] -> Encoding

type Rep Errors Source # 
Instance details

Defined in Network.OAuth.OAuth2.AuthorizationRequest

type Rep Errors = D1 (MetaData "Errors" "Network.OAuth.OAuth2.AuthorizationRequest" "hoauth2-1.8.7-KitIkAkRQzGKHljlRxLGXM" False) ((C1 (MetaCons "InvalidRequest" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "UnauthorizedClient" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "AccessDenied" PrefixI False) (U1 :: Type -> Type))) :+: ((C1 (MetaCons "UnsupportedResponseType" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "InvalidScope" PrefixI False) (U1 :: Type -> Type)) :+: (C1 (MetaCons "ServerError" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "TemporarilyUnavailable" PrefixI False) (U1 :: Type -> Type))))