lemmy-js-client
    Preparing search index...

    Type Alias CreateOAuthProvider

    Create an external auth method.

    type CreateOAuthProvider = {
        account_linking_enabled?: boolean;
        authorization_endpoint: string;
        auto_verify_email?: boolean;
        client_id: string;
        client_secret: string;
        display_name: string;
        enabled?: boolean;
        id_claim: string;
        issuer: string;
        scopes: string;
        token_endpoint: string;
        use_pkce?: boolean;
        userinfo_endpoint: string;
    }
    Index

    Properties

    account_linking_enabled?: boolean
    authorization_endpoint: string
    auto_verify_email?: boolean
    client_id: string
    client_secret: string
    display_name: string
    enabled?: boolean
    id_claim: string
    issuer: string
    scopes: string
    token_endpoint: string
    use_pkce?: boolean
    userinfo_endpoint: string