Class PushedAuthorizationErrorResponse

java.lang.Object
com.nimbusds.oauth2.sdk.PushedAuthorizationResponse
com.nimbusds.oauth2.sdk.PushedAuthorizationErrorResponse
All Implemented Interfaces:
ErrorResponse, Message, Response

Pushed authorisation error response.

Example HTTP response:

 HTTP/1.1 400 Bad Request
 Content-Type: application/json
 Cache-Control: no-cache, no-store

 {
  "error ": "invalid_request",
  "error_description" : "The redirect_uri is not valid for the given client"
 }
 

Related specifications:

  • OAuth 2.0 Pushed Authorization Requests (RFC 9126)