@Immutable public class OIDCClientRegistrationRequest extends ClientRegistrationRequest
Example HTTP request:
POST /connect/register HTTP/1.1
Content-Type: application/json
Accept: application/json
Host: server.example.com
Authorization: Bearer eyJhbGciOiJSUzI1NiJ9.eyJ ...
{
"application_type" : "web",
"redirect_uris" : [ "https://client.example.org/callback",
"https://client.example.org/callback2" ],
"client_name" : "My Example",
"client_name#ja-Jpan-JP" : "クライアント名",
"logo_uri" : "https://client.example.org/logo.png",
"subject_type" : "pairwise",
"sector_identifier_uri" : "https://other.example.net/file_of_redirect_uris.json",
"token_endpoint_auth_method" : "client_secret_basic",
"jwks_uri" : "https://client.example.org/my_public_keys.jwks",
"userinfo_encrypted_response_alg" : "RSA1_5",
"userinfo_encrypted_response_enc" : "A128CBC-HS256",
"contacts" : [ "ve7jtb@example.org", "mary@example.org" ],
"request_uris" : [ "https://client.example.org/rf.txt#qpXaRLh_n93TTR9F252ValdatUQvQiJi5BDub2BeznA" ]
}
Related specifications:
| Constructor and Description |
|---|
OIDCClientRegistrationRequest(URI uri,
OIDCClientMetadata metadata,
BearerAccessToken accessToken)
Creates a new OpenID Connect client registration request.
|
OIDCClientRegistrationRequest(URI uri,
OIDCClientMetadata metadata,
com.nimbusds.jwt.SignedJWT softwareStatement,
BearerAccessToken accessToken)
Creates a new OpenID Connect client registration request with an
optional software statement.
|
| Modifier and Type | Method and Description |
|---|---|
OIDCClientMetadata |
getOIDCClientMetadata()
Gets the associated OpenID Connect client metadata.
|
static OIDCClientRegistrationRequest |
parse(HTTPRequest httpRequest)
Parses an OpenID Connect client registration request from the
specified HTTP POST request.
|
getClientMetadata, getSoftwareStatement, toHTTPRequestgetAccessTokengetEndpointURIpublic OIDCClientRegistrationRequest(URI uri, OIDCClientMetadata metadata, BearerAccessToken accessToken)
uri - The URI of the client registration endpoint. May
be null if the ClientRegistrationRequest.toHTTPRequest()
method will not be used.metadata - The OpenID Connect client metadata. Must not be
null and must specify one or more
redirection URIs.accessToken - An OAuth 2.0 Bearer access token for the request,
null if none.public OIDCClientRegistrationRequest(URI uri, OIDCClientMetadata metadata, com.nimbusds.jwt.SignedJWT softwareStatement, BearerAccessToken accessToken)
uri - The URI of the client registration
endpoint. May be null if the
ClientRegistrationRequest.toHTTPRequest() method will not be
used.metadata - The OpenID Connect client metadata. Must
not be null and must specify one or
more redirection URIs.softwareStatement - Optional software statement, as a signed
JWT with an iss claim; null
if not specified.accessToken - An OAuth 2.0 Bearer access token for the
request, null if none.public OIDCClientMetadata getOIDCClientMetadata()
public static OIDCClientRegistrationRequest parse(HTTPRequest httpRequest) throws ParseException
httpRequest - The HTTP request. Must not be null.ParseException - If the HTTP request couldn't be parsed to an
OpenID Connect client registration request.Copyright © 2016 Connect2id Ltd.. All rights reserved.