Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AuthPKCECodeVerifierMissingError

Error thrown when the PKCE code verifier is not found in storage. This typically happens when the auth flow was initiated in a different browser, device, or the storage was cleared.

@example
import { AuthPKCECodeVerifierMissingError } from '@supabase/auth-js'

throw new AuthPKCECodeVerifierMissingError()
class AuthPKCECodeVerifierMissingError extends CustomAuthError {
constructor();
}

§Extends

§
CustomAuthError
[src]

§Constructors

§
new AuthPKCECodeVerifierMissingError()
[src]