Package com.nimbusds.oauth2.sdk.client
Class RegistrationError
java.lang.Object
com.nimbusds.oauth2.sdk.client.RegistrationError
OAuth 2.0 client registration errors.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ErrorObject
Client registration: The value of one of the client metadata fields is invalid and the server has rejected this request.static final ErrorObject
Client registration: The value of one or moreredirect_uris
is invalid.static final ErrorObject
Client registration: The software statement presented is invalid.static final ErrorObject
Client registration: The software statement presented is not approved for use by this authorisation server. -
Method Summary
-
Field Details
-
INVALID_REDIRECT_URI
Client registration: The value of one or moreredirect_uris
is invalid. -
INVALID_CLIENT_METADATA
Client registration: The value of one of the client metadata fields is invalid and the server has rejected this request. Note that an authorisation server may choose to substitute a valid value for any requested parameter of a client's metadata. -
INVALID_SOFTWARE_STATEMENT
Client registration: The software statement presented is invalid. -
UNAPPROVED_SOFTWARE_STATEMENT
Client registration: The software statement presented is not approved for use by this authorisation server.
-