Skip to content
  • Auto
  • Light
  • Dark
Download Beeper

Info

Get user info
get/oauth/userinfo

Returns information about the authenticated user/token

ReturnsExpand Collapse
curl http://localhost:23373/oauth/userinfo \
    -H "Authorization: Bearer $BEEPER_ACCESS_TOKEN"
{
  "iat": 0,
  "scope": "scope",
  "sub": "sub",
  "token_use": "access",
  "aud": "aud",
  "client_id": "client_id",
  "exp": 0
}
Returns Examples
{
  "iat": 0,
  "scope": "scope",
  "sub": "sub",
  "token_use": "access",
  "aud": "aud",
  "client_id": "client_id",
  "exp": 0
}