UNPKG

pkce-x

Version:

PKCE is a security extension to OAuth 2.0 for public clients on mobile devices, designed to prevent interception of the authorisation code by a malicious application that has sneaked into the same device.

12 lines (11 loc) 294 B
export default interface IConfig { client_id: string; client_secret?: string; redirect_uri: string; authorization_endpoint: string; token_endpoint: string; authenticated_url?: string; requested_scopes: string; storage?: Storage; organization?: string; }