talque
  • External integrations for talque
  • JSON API (readonly)
    • General
      • Locales and Text
    • Organization
      • Read
    • Lecture
      • List
      • Read
      • Files
      • Authorization
    • Speaker
      • List
      • Read
      • Authorization
    • Participants
    • Vendors
      • List
      • Read
      • Authorization
    • Room
      • List
      • Read
    • Enumerations
      • Locale
  • Deep links
    • General
    • Organization
    • Profile links
    • Lecture links
    • Partner links
    • Post links
    • Map links
    • Video rooms
  • Webhooks
    • General
    • Authentication
    • File upload
    • Users
    • Invites
    • Tickets
    • Vendors
      • Create
      • Update
      • Delete
    • COMING SOON: Announcements
    • COMING SOON: Lectures
    • Map Data
      • Map layer
      • Map features
      • Update references
  • COMING SOON: Chat Bots
  • Wordpress Plugin
    • Installation
    • Pages
    • Shortcodes
      • Filters
      • Optional settings
    • Routing
    • Configuration
  • Javascript plugin
    • Introduction
    • Installation
      • Initial page
      • Filters
      • Optional settings
    • Routing
    • Configuration
  • Single Sign-On
    • OAuth2 Login
    • Website data
    • OAuth2 Flow
      • Request an Authorization Code
      • Exchange for Access Token
      • Authorized Requests
  • SELF-SERVICE LINKS
    • Event Ticket Token
  • Old Wordpress Plugin
    • Download
    • Pages
    • Shortcodes
    • Filter Options
    • Style Options
  • Old Javascript Plugin
    • Introduction
    • Routing
    • Installation
  • Troubleshooting
    • Firewall Configuration
  • Talque Plugin
    • Download
    • Installation
    • Configuration
Powered by GitBook
On this page

Was this helpful?

  1. Single Sign-On
  2. OAuth2 Flow

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

{
    "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

Key

Value

Note

Scope

email

string

The validated email address

EMAIL

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

PreviousExchange for Access TokenNextEvent Ticket Token

Last updated 6 years ago

Was this helpful?