ESC
NuxtStarterAI logo
Menu
On this page

Features > Magic Link

Setup


1. Supabase takes care of handling Magic Links for you automatically.


2. You can begin authenticating your users directly on the frontend using code similar to the sample provided below:


/app/components/SignInButton.vue
1 2 <script> 3 const handleOtpSignup = async (options: { 4 type: string; 5 provider?: Provider; 6 }) => { 7 isLoading.value = true; 8 9 try { 10 const { type, provider } = options; 11 const redirectURL = window.location.origin + "/api/auth/callback"; 12 13 await supabase.auth.signInWithOtp({ 14 email, 15 options: { 16 emailRedirectTo: redirectURL, 17 }, 18 }); 19 toast.success("Check your mail box!"); 20 } catch (error) { 21 console.log(error); 22 } finally { 23 isLoading.value = false; 24 } 25 }; 26 </script>

3. When you need to verify the authentication status of your users on the backend, you can accomplish it with code similar to the example below:


/app/api/example.ts
1import { serverSupabaseUser } from '#supabase/server'; 2 3export default defineEventHandler(async (event) => { 4 try { 5 const user = await serverSupabaseUser(event) 6 7 // User who are not logged in can't make a purchase 8 if (!user) { 9 throw createError({ statusCode: 401, statusMessage: "You must be logged in to make a purchase." }); 10 } 11 12 // you can do what you need to do with the authenticated user 13 } catch (error) { 14 console.error(error); 15 throw error; 16 } 17});