|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.nimbusds.oauth2.sdk.AuthorizationResponse
com.nimbusds.oauth2.sdk.AuthorizationErrorResponse
@Immutable public class AuthorizationErrorResponse
Authorisation error response. This class is immutable.
Standard authorisation errors:
OAuth2Error.INVALID_REQUEST
OAuth2Error.UNAUTHORIZED_CLIENT
OAuth2Error.ACCESS_DENIED
OAuth2Error.UNSUPPORTED_RESPONSE_TYPE
OAuth2Error.INVALID_SCOPE
OAuth2Error.SERVER_ERROR
OAuth2Error.TEMPORARILY_UNAVAILABLE
Example HTTP response:
HTTP/1.1 302 Found Location: https://client.example.com/cb? error=invalid_request &error_description=the%20request%20is%20not%20valid%20or%20malformed &state=af0ifjsldkj
Related specifications:
Constructor Summary | |
---|---|
AuthorizationErrorResponse(URL redirectURI,
ErrorObject error,
ResponseTypeSet rts,
State state)
Creates a new authorisation error response. |
Method Summary | |
---|---|
ErrorObject |
getErrorObject()
Gets the error associated with the error response. |
ResponseTypeSet |
getResponseTypeSet()
Gets the response type set. |
static Set<ErrorObject> |
getStandardErrors()
Gets the standard OAuth 2.0 errors for an Authorisation error response. |
static AuthorizationErrorResponse |
parse(HTTPResponse httpResponse)
Parses an authorisation error response from the specified HTTP response. |
static AuthorizationErrorResponse |
parse(URL uri)
Parses an authorisation error response from the specified URI. |
static AuthorizationErrorResponse |
parse(URL redirectURI,
Map<String,String> params)
Parses an authorisation error response from the specified redirect URI and parameters. |
Map<String,String> |
toParameters()
Returns the parameters of this authorisation response. |
URL |
toURI()
Returns the URI representation (redirect URI + fragment / query string) of this authorisation response. |
Methods inherited from class com.nimbusds.oauth2.sdk.AuthorizationResponse |
---|
getRedirectURI, getState, toHTTPResponse |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.nimbusds.oauth2.sdk.Response |
---|
toHTTPResponse |
Constructor Detail |
---|
public AuthorizationErrorResponse(URL redirectURI, ErrorObject error, ResponseTypeSet rts, State state)
redirectURI
- The base redirect URI. Must not be null
.error
- The error. Should match one of the
standard errors
for an
authorisation error response. Must not be
null
.rts
- The response type set, used to determine the
redirect URL composition. If unknown
null
.state
- The state, null
if not requested.Method Detail |
---|
public static Set<ErrorObject> getStandardErrors()
public ErrorObject getErrorObject()
ErrorResponse
getErrorObject
in interface ErrorResponse
null
if none.public ResponseTypeSet getResponseTypeSet()
null
if not specified.public Map<String,String> toParameters()
AuthorizationResponse
Example parameters (authorisation success):
access_token = 2YotnFZFEjr1zCsicMWpAA state = xyz token_type = example expires_in = 3600
toParameters
in class AuthorizationResponse
public URL toURI() throws SerializeException
AuthorizationResponse
Example URI:
http://example.com/cb#access_token=2YotnFZFEjr1zCsicMWpAA &state=xyz &token_type=example &expires_in=3600
toURI
in class AuthorizationResponse
SerializeException
- If this response couldn't be serialised
to a URI.public static AuthorizationErrorResponse parse(URL redirectURI, Map<String,String> params) throws ParseException
redirectURI
- The base redirect URI. Must not be null
.params
- The response parameters to parse. Must not be
null
.
ParseException
- If the parameters couldn't be parsed to an
authorisation error response.public static AuthorizationErrorResponse parse(URL uri) throws ParseException
Example URI:
https://client.example.com/cb? error=invalid_request &error_description=the%20request%20is%20not%20valid%20or%20malformed &state=af0ifjsldkj
uri
- The URI to parse. Can be absolute or relative. Must not
be null
.
ParseException
- If the URI couldn't be parsed to an
authorisation error response.public static AuthorizationErrorResponse parse(HTTPResponse httpResponse) throws ParseException
Example HTTP response:
HTTP/1.1 302 Found Location: https://client.example.com/cb? error=invalid_request &error_description=the%20request%20is%20not%20valid%20or%20malformed &state=af0ifjsldkj
httpResponse
- The HTTP response to parse. Must not be
null
.
ParseException
- If the HTTP response couldn't be parsed to an
authorisation error response.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |