Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface ConnectionGatewayAuthentication

    Token-based authentication settings to be applied when connection is using an sms strategy.

    interface ConnectionGatewayAuthentication {
        method: string;
        subject?: string;
        audience: string;
        secret: string;
        secret_base64_encoded?: boolean;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Accepts any additional properties

    Index

    Properties

    method: string

    The Authorization header type.

    subject?: string

    The subject to be added to the JWT payload.

    audience: string

    The audience to be added to the JWT payload.

    secret: string

    The secret to be used for signing tokens.

    secret_base64_encoded?: boolean

    Set to true if the provided secret is base64 encoded.