Variable validateOAuth2RefreshToken
validateOAuth2RefreshToken: (
token: string,
scopes?: string[],
userContext?: Record<string, any>,
) => Promise<ErrorOAuth2 | (InstrospectTokenResponse & { status: "OK"; })> = Wrapper.validateOAuth2RefreshToken
Type declaration
- (
token: string,
scopes?: string[],
userContext?: Record<string, any>,
): Promise<ErrorOAuth2 | (InstrospectTokenResponse & { status: "OK"; })> Parameters
- token: string
Optional
scopes: string[]Optional
userContext: Record<string, any>
Returns Promise<ErrorOAuth2 | (InstrospectTokenResponse & { status: "OK"; })>