Function BitBadgesNextAuth

  • Add BitBadges login to your page to allow authentication with BitBadges and any supported blockchain (Ethereum, Bitcoin, Cosmos, Solana, etc).

    https://example.com/api/auth/callback/bitbadges
    
    import { Auth } from "@auth/core"
    import BitBadges from "@auth/core/providers/bitbadges"

    const request = new Request(origin)
    const response = await Auth(request, {
    providers: [BitBadges({ clientId: BITBADGES_CLIENT_ID, clientSecret: BITBADGES_CLIENT_SECRET })],
    })

    By default, Auth.js assumes that the BitBadges provider is based on the OAuth 2 specification.

    :::tip

    The BitBadges provider comes with a default configuration. To override the defaults for your use case, check out customizing a built-in OAuth provider.

    :::

    :::info Disclaimer

    If you think you found a bug in the default configuration, you can open an issue.

    Auth.js strictly adheres to the specification and it cannot take responsibility for any deviation from the spec by the provider. You can open an issue, but if the problem is non-compliance with the spec, we might not pursue a resolution. You can ask for more help in Discussions.

    :::

    Parameters

    • config: OAuthUserConfig<BitBadgesProfile> & {
          description?: string;
          expectAttestationsPresentations?: boolean;
          expectVerifySuccess?: boolean;
          image?: string;
          issuedAtTimeWindowMs?: number;
          name?: string;
          ownershipRequirements?: any;
      }

    Returns OAuthConfig<BitBadgesProfile>