OAuth 2.0 My User Profile Request
- 08 Jul 2024
- 1 Minute to read
- Print
- DarkLight
OAuth 2.0 My User Profile Request
- Updated on 08 Jul 2024
- 1 Minute to read
- Print
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
My User Profile Request
Issue a GET to /idp/profile/oauth2/me, including the Access Token in the Authorization HTTP header using the "Bearer" scheme.
GET /idp/profile/oauth2/me
Authorization: Bearer BEARERTOKENGOESHERE
When requesting a user profile, the system will return a JSON object containing the information your RapidIdentity Administrator Selected to be returned to the OAuth2.0 Client you are using
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
{
"id": "f1ca0d92-f42c-4499-a77a-4a733fc841b2"
"firstName": "Teresa"
"lastName": "Teacher"
"email": "teresa.teacher@school.com"
}
Was this article helpful?