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
Name
Type
Description
Authorization
string
Must be "Bearer " + the access token
The response json fields depend on the scope of the grant. Currently. these are
Key
Value
Note
Scope
string
The validated email address
firstName
string
User fist (given) name
PROFILE
lastName
string
User last (family) name
PROFILE
companyName
string
Employment details
PROFILE
jobTitle
string
Employment details
PROFILE
photo
string
Serving url of profile photo
PROFILE
ctime
number
Account creation time as javascript timestamp
PROFILE
Last updated