Authorized Requests

With the access token, you can make authorized requests for user information according to the scope(s) of the grant.

Retrieve User Information

POST https://www.talque.com/oauth2/info

This endpoint returns the user information according to the scope(s) of the grant

Headers

{
    "firstName": "Werner"
    "lastName": "Heisenberg",
    "email": "wh@example.com",
    "companyName": "Max Planck Institute for Physics",
    "jobTitle": "Professor",
    "photo": "https://example.com/path/to/photo.jpg",
    "ctime": -2148253200000,
}

The response json fields depend on the scope of the grant. Currently. these are

Last updated