fs
fs
Explore posts from servers
WWasp
Created by fs on 12/14/2024 in #đŸ™‹questions
SKIP_EMAIL_VERIFICATION_IN_DEV=true not working
how can i do this @kapa.ai
In the meantime, as a workaround, you might need to manually verify email addresses in your development database or temporarily modify the auth logic to bypass verification for testing purposes. However, be cautious with any workarounds and make sure not to push such changes to production.
24 replies
WWasp
Created by fs on 12/14/2024 in #đŸ™‹questions
SKIP_EMAIL_VERIFICATION_IN_DEV=true not working
imma cry @kapa.ai
24 replies
WWasp
Created by fs on 12/14/2024 in #đŸ™‹questions
SKIP_EMAIL_VERIFICATION_IN_DEV=true not working
@kapa.ai yea i've confirmed that step 1 - 3 have been done
24 replies
WWasp
Created by fs on 9/23/2024 in #đŸ™‹questions
What's the best way to setup auth with third party that utilizes Google Auth?
Why not use only Wasp's Google Auth?
That would be ideal, but I need to generate a crypto wallet for the users, and Dyamic handles that for me
11 replies
WWasp
Created by fs on 9/23/2024 in #đŸ™‹questions
What's the best way to setup auth with third party that utilizes Google Auth?
<DynamicContextProvider
settings={{
environmentId: "",
walletConnectors: [EthereumWalletConnectors],
events: {
onAuthSuccess: async ({ user, primaryWallet, isAuthenticated }) => {
const authToken = getAuthToken();
// how do we set the authToken to work with wasp's auth?
},
onAuthFailure: (data) => {
console.log("onAuthFailure", data);
},
},
}}
>
{children}
<CookieConsentBanner />
</DynamicContextProvider>
<DynamicContextProvider
settings={{
environmentId: "",
walletConnectors: [EthereumWalletConnectors],
events: {
onAuthSuccess: async ({ user, primaryWallet, isAuthenticated }) => {
const authToken = getAuthToken();
// how do we set the authToken to work with wasp's auth?
},
onAuthFailure: (data) => {
console.log("onAuthFailure", data);
},
},
}}
>
{children}
<CookieConsentBanner />
</DynamicContextProvider>
11 replies
WWasp
Created by fs on 9/23/2024 in #đŸ™‹questions
What's the best way to setup auth with third party that utilizes Google Auth?
No description
11 replies