HomeVendure CoreShow hidden breadcrumbs...AuthVerificationTokenStrategyOn this pageVerificationTokenStrategy@vendure/coreSourcev3.2.0 Defines a custom strategy for creating and validating verification tokens. InfoThis is configured via the authOptions.verificationTokenStrategy property of your VendureConfig. Signatureinterface VerificationTokenStrategy extends InjectableStrategy { generateVerificationToken(ctx: RequestContext): Promise<string> | string; verifyVerificationToken(ctx: RequestContext, token: string): Promise<boolean> | boolean;} Extends: InjectableStrategy generateVerificationTokenmethod(ctx: RequestContext) => Promise<string> | stringv3.2.0Generates a verification token.verifyVerificationTokenmethod(ctx: RequestContext, token: string) => Promise<boolean> | booleanv3.2.0Checks the validity of a verification token.Was this chapter helpful?It was helpfulIt wasn't helpfulReport IssuePreviousSuperadminCredentialsNextCacheEdited Jan 28, 2026ยทEdit this page