interface WebAuthFlowInput {
    redirectHost: string;
    redirectPath: string;
    startUrl: string;
}

Properties

redirectHost: string

Domain used for redirect validation. For example, "www.example.com"

redirectPath: string

Path portion used to match the callback redirect. For example, "/oauth/callback"

startUrl: string

Full URL to open in the auth tab to start the authentication flow. For example, "https://www.example.com/oauth/authorize?client_id=abc&redirect_uri=..."