Skip to main content
Module

x/oauth4webapi/mod.ts>UserInfoResponse

OAuth 2 / OpenID Connect for Web Platform API JavaScript runtimes
Go to Latest
interface UserInfoResponse
import { type UserInfoResponse } from "https://deno.land/x/oauth4webapi@v2.0.4/mod.ts";

Index Signatures

readonly [claim: string]: JsonValue | undefined

Properties

readonly
sub: string
readonly
optional
name: string
readonly
optional
given_name: string
readonly
optional
family_name: string
readonly
optional
middle_name: string
readonly
optional
nickname: string
readonly
optional
preferred_username: string
readonly
optional
profile: string
readonly
optional
picture: string
readonly
optional
website: string
readonly
optional
email: string
readonly
optional
email_verified: boolean
readonly
optional
gender: string
readonly
optional
birthdate: string
readonly
optional
zoneinfo: string
readonly
optional
locale: string
readonly
optional
phone_number: string
readonly
optional
updated_at: number
readonly
optional
address: { readonly formatted?: string; readonly street_address?: string; readonly locality?: string; readonly region?: string; readonly postal_code?: string; readonly country?: string; }