|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.nimbusds.oauth2.sdk.AbstractRequest
com.nimbusds.oauth2.sdk.ProtectedResourceRequest
com.nimbusds.openid.connect.sdk.UserInfoRequest
@Immutable public final class UserInfoRequest
UserInfo request. Used to retrieve the consented claims about the end-user. This class is immutable.
Example HTTP GET request:
GET /userinfo HTTP/1.1 Host: server.example.com Authorization: Bearer SlAV32hkKG
Related specifications:
Constructor Summary | |
---|---|
UserInfoRequest(URL uri,
BearerAccessToken accessToken)
Creates a new UserInfo HTTP GET request. |
|
UserInfoRequest(URL uri,
HTTPRequest.Method httpMethod,
BearerAccessToken accessToken)
Creates a new UserInfo request. |
Method Summary | |
---|---|
HTTPRequest.Method |
getMethod()
Gets the HTTP method for this UserInfo request. |
static UserInfoRequest |
parse(HTTPRequest httpRequest)
Parses the specified HTTP request for a UserInfo request. |
HTTPRequest |
toHTTPRequest()
Returns the matching HTTP request. |
Methods inherited from class com.nimbusds.oauth2.sdk.ProtectedResourceRequest |
---|
getAccessToken |
Methods inherited from class com.nimbusds.oauth2.sdk.AbstractRequest |
---|
getURI |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public UserInfoRequest(URL uri, BearerAccessToken accessToken)
uri
- The URI of the UserInfo endpoint. May be
null
if the toHTTPRequest()
method will not be used.accessToken
- An OAuth 2.0 Bearer access token for the request.
Must not be null
.public UserInfoRequest(URL uri, HTTPRequest.Method httpMethod, BearerAccessToken accessToken)
uri
- The URI of the UserInfo endpoint. May be
null
if the toHTTPRequest()
method will not be used.httpMethod
- The HTTP method. Must be HTTP GET or POST and not
null
.accessToken
- An OAuth 2.0 Bearer access token for the request.
Must not be null
.Method Detail |
---|
public HTTPRequest.Method getMethod()
public HTTPRequest toHTTPRequest() throws SerializeException
Request
SerializeException
- If the request message couldn't be
serialised to an HTTP request.public static UserInfoRequest parse(HTTPRequest httpRequest) throws ParseException
httpRequest
- The HTTP request. Must not be null
.
ParseException
- If the HTTP request couldn't be parsed to a
UserInfo request.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |