when the video starts with "It's not you. The problem isn't you.", you know you're in the right place
@activenode9 ай бұрын
That was the most important part to highlight
@flavioneto108111 ай бұрын
there was no other tutorial so clear and to the point about the supabase/ssr lib (definitely including the own docs lol), thanks a lot
@taviiiz9 ай бұрын
Finally a super clear and helpful tutorial about this! It's better than the docs. Thanks for sharing 🙌
@activenode9 ай бұрын
glad to hear that!
@karankhaira84976 ай бұрын
Thanks, most tutorials are outdated, you filled in the gap between the transition form the auth lib to ssr.
@activenode6 ай бұрын
Thanks!
@francois-pierrethibault265111 ай бұрын
Thanks for this one, was confused with the doc and was not that happy to migrate again :) Now that's easy :)
@activenode11 ай бұрын
Happy to help!
@ThomasWilke8610 ай бұрын
Thanks a lot. I am already using the ssr package but didn‘t know if i am right with my implementation. Now it‘s much more clear for me. Thanks a lot! :-)
@MorganHvidt11 ай бұрын
Thank you so much for this! It was needed since the auth has changed so many times
@kakoozavian10 ай бұрын
Still struggling with dynamic routing. Returning null on my side
@kurwacherry6 ай бұрын
cant express how helpful this was, thank you very much!
@activenode6 ай бұрын
Happy to hear!
@SmartSleeper11 ай бұрын
You're a lifesaver! I am just starting out with Supabase and Next and you were the only one who could make me understand. Does authentication happen the way it was done before?
@louaiboumedienne827610 ай бұрын
perfect one, straight to the point 🎯
@xiiEJRAM11 ай бұрын
Great explanation your tutorials are really EPIC , I love your style in explain concepts , keep going please
@usman611 ай бұрын
thanks, this helped a lot. I would love a video on how to use these different functions in the app like getting user session etc
@activenode11 ай бұрын
So more like a "how to deal with authentication" tutorial?
@usman610 ай бұрын
@@activenode yes!
@funoism Жыл бұрын
Perfect timing and well explained!
@activenode11 ай бұрын
Thanks so much
@AnindoSarker8 ай бұрын
Great explanation. Supabase documentation for Nextjs keeps getting confusing
@activenode8 ай бұрын
Indeed!
@m_t_jawaad9 ай бұрын
Immediately subscribed
@JuicyBenji8 ай бұрын
Great video, keep it up. You just earned yourself a sub :D
@activenode6 ай бұрын
Lovely! Have a great week!
@lawrencegood16759 ай бұрын
"If you're not using middleware with app router, then you're dumb" I died haha
@activenode9 ай бұрын
OK that is evil subbing there :D
@vlad_pantyukhin11 ай бұрын
Great video! What theme are you using and font in VS Code? Happy Holidays! 🎄
@activenode11 ай бұрын
Hey there! That is: Beautiful Dracula Normal. Same to you 🎊
@guiyumin9 ай бұрын
nicely done!thanks
@tech_interviewer Жыл бұрын
This is great! Thank you! Quick question: When do we want to use the server client / not the component one? For instance, assume you have a fetchUserData function that takes in an id. While loading a server side page, we should use server component client. When exactly the server client comes in picture? Only the server actions and route handlers?
@activenode Жыл бұрын
With NextJS 14, everything runs on the server by default. So only if you explicitly use 'use client'; it will run on the client. So, only then you want to use the createFrontendSupabaseClient. Yes, onlly in Route Handlers and Server Actions you would use the non-serverComponent version - the createSupabaseAppServerClient(); On the server component you'd use createSupabaseAppServerClient(true); or as we simplified createSupabaseServerComponentClient(); Does that help?
@HarisHussain4 ай бұрын
@@activenodeSo for realtime Supabase updates where one subscribes to a channel in useEffect hook on a client page/component, I would use createBrowserClient? It seems like I must be missing something since the auth user + channel returns absolutely nothing [] but as soon as I switch to server it works fine (but I need client for realtime) - am I missing some caching or do I just use createBrowserClient?
@activenode4 ай бұрын
@@HarisHussain Yes, for realtime you'd be using createBrowserClient when you want to listen to Realtime updates in your UI (you can theoretically work with RT also on the server but it doesn't sound like that's what you want) . Hope that helps!
@dziaddyАй бұрын
Should I use supabase/ssr just for Auth related stuff? Clients created by that use cookies so it opts out of caching for every request. What If I want to fetch todos and cache them? Should I use normal "supabase-js" ?
@fulltimefrontend6 ай бұрын
Could not understand how to access serverClient in getServerSideProps, can you share an example ?
@rishabsharma53077 ай бұрын
waay too good video
@mr_clean57511 ай бұрын
Which should I use for SvelteKit?
@activenode11 ай бұрын
In theory, the same principles apply: For frontend: createBrowserClient, for backend you need to pass the way Svelte handles cookies. You might wanna compare the code here: supabase.com/docs/guides/auth/server-side/creating-a-client?environment=hooks&framework=sveltekit
@mr_clean57510 ай бұрын
@@activenodeThanks!
@pcv-free-as-a-bird5 ай бұрын
Hi there!! Thank you for the video it qas really nice.. I’ve setup supabase/srr on my Remix js app. The createBroswerClient and createServerClient works!! But I still not understand the concept between when to use the Broswer one or the Server one.. I know that when it’s for front-end is the Broswer client but I think I would need a real life example to understand both. Anyone can help me?
@hbela1000 Жыл бұрын
great,thx.
@joshuablew7 ай бұрын
Hey, thanks for this amazing tutorial! I keep getting this error when building my project after following this setup: Static generation failed due to dynamic usage on /orders, reason: cookies I'm exclusively using the app router. My /orders page is a SSR page and calls a function "fetchOrders" before returning its components. This fetchOrders function lives in a server actions file with the "use server" file heading. It queries a pg database using Drizzle, and uses the "createSupabaseServerClient" function to fetch the user id for the database query. I'm unsure how to reliably get the user id of the logged in user for my database queries with this error throwing. Has anyone ran into something like this?
@activenode7 ай бұрын
Can you try one thing to troubleshoot? This video shows calling `cookies()` in each function. However, I'm about to make an updated video where I'll be using `const cookieStore = cookies()` in the top of the utils function and then only `cookieStore.get`, `cookieStore.set` etc. So calling `cookies()` immediately will mark the file as "using cookies". Can you try if that helps?
@100p Жыл бұрын
you are beautiful. thank you.
@akosbalint34859 ай бұрын
Isn`t it a security problem to store the supabase keys in the NEXT_PUBLIC env variables? As far as I know those can be read by client side js scripts.
@activenode9 ай бұрын
Yes if it's about the Service Key, definitely! I am using the anon key in my .env.local being NEXT_PUBLIC_SUPABASE_KEY. If you use the admin client, you don't need any of that special stuff I'm showing. In that case make sure it's not prefixed with NEXT_PUBLIC_ - as you said it would be a massive security hole - and just use createClient to create it.
@_bestbeast7 ай бұрын
I am getting an error that cookies can set in server action or route handler only
@activenode7 ай бұрын
When exactly do you get it? What are you doing?
@Skmanager-r8b10 ай бұрын
How are you auto importing the imports. Is there browser extension for this?
@activenode10 ай бұрын
Steg+space in vscode
@junsgk11 ай бұрын
❤
@dragos.cojocaru11 ай бұрын
Can you make a video on self-hosting a Next.js app using SST, OpenNext, PM2 and MinIO?
@activenode11 ай бұрын
That's actually a cool idea, I'll write it down in the ideation list.
@ChristianKolbow Жыл бұрын
👍
@imbjarne79511 ай бұрын
I‘m still a bit confused why shouldn’t I use the nextjs auth helper library
@activenode11 ай бұрын
Good question. Well, you can. But the problem is: They won't maintain it anymore in the future. But feature-wise, it's the same thing. Knowing that all of the NextJS Auth Helpers literally do the same thing I found it very confusing to have a different name for each context so once I understood the new package, I found it more convenient. Maintenance-wise I'd say: The sooner you switch, the better. But yes, you probably can stay on the old one for quite some time without any issues. Just saying the dependencies could get old etc
@imbjarne79511 ай бұрын
Thanks for the reply. I didn't even see that it's deprecated. I also found it a bit confusing having like 6 ways to create a supabase client. I will refactor it asap.
supabase docs sucked, code samples sucked. thank you so much
@soapy47448 ай бұрын
Justin Trudeau????
@BK-fk4gf7 ай бұрын
His lost brother
@hakuna_matata_hakuna11 ай бұрын
All of that extra crap was because of nextjs and their hatred for request response model making it hard , other vite frameworks have the request and response accessible in their SSR side nextjs doesn't in server components
@Shashanksoni9811 ай бұрын
Hi Can you please explain what you just mentioned, I'm learning Next js through KZbin and didn't come across something that you said maybe I did but can't remember.
@hakuna_matata_hakuna11 ай бұрын
@@Shashanksoni98 the way you get headers and cookies in nextjs varies significantly from how other SSR frameworks do it causing a lot of pain to anyone building integrations that work on the server and client in nextjs
@activenode11 ай бұрын
Hey, thanks for that info. In theory NextJS is on the right track by already using the standardized Response and Request instances with a lil bit of extensions (developer.mozilla.org/en-US/docs/Web/API/Response). But across frameworks, not just NextJS, there is no common standardized way yet to access those. It would be easier if they'd all agree on having req/res globally available in such contexts, then one client would fit it all. Not a NextJS specific problem though :)
@hakuna_matata_hakuna11 ай бұрын
@@activenode there's winter CG which is what other frameworks are relying on as a standard , Guillermo recently talked shit about it , the biggest thing I find odd is how it's not possible to access the request context in server component page , you can only access headers and cookies with special functions that rely on async context , you don't get the URL which is funny given how hard they're pushing relying on the URL for state . They're confused and in turn confusing everyone at this point they've even refused to take feedback and add the request object in server components + router events
@activenode11 ай бұрын
@@hakuna_matata_hakuna Sorry about the features you are missing, I'm sure collective community feedback will sooner or later lead the path. Thanks for hinting WinterCG, didn't know that one :)
@borisbarzotto578511 ай бұрын
Thanks for the explanation, excellent. I wanted to ask you in the last part to make client of the middleware, what should I do with the constant "supabase" that we create there, since we return "res" right away, wouldn't a line like: await supabase.auth.getSession() be missing there? Thanks
@activenode11 ай бұрын
Ha, good catch. Yeah, it wasn't a mistake, even though it's common to have that, yes. There are certainly use-cases with and without auth that's why I didn't add it there and left it open for anyone to decide what to do with it, you can even just NOT use it in the middleware. But yes, if you do use auth you should be using the line you posted await supabase.auth.getSession() to ensure token freshness :) Cheers!
@PracticalAIbyRamsri11 ай бұрын
Hi man! Thanks a lot for this tutorial! Which client from the options that we created should we be using for Stripe webhook? eg for the NextJS 14 path: app/api/webhooks/route.ts
@activenode11 ай бұрын
Hey! Awesome question: A stripe webhook firing a route handler, doesn’t need RLS usually as it isn’t a person and hence also cookies don’t matter. Usually, with a webhook, you want an admin client. So you need none of the clients really that I show in this video but you would create some like: import {createClient} from ‘@supabase/supbase-js’; function getAdminClient() { return createClient(URL, SERVICE_KEY); }
@PracticalAIbyRamsri11 ай бұрын
@@activenode Thanks a lot! Appreciate your reply :)
@austingebauer453210 ай бұрын
Do you happen to have an example of the password reset flow using @supabase/ssr? It would be extremely helpful. Thanks for the content!
@ben-gibb10 ай бұрын
I second this
@activenode10 ай бұрын
So, the password reset flow, is nothing but a magic link with type "recovery". That's the short answer. The fully server-based variant works differently than the one with frontend. I'll cover this in my upcoming book (still takes some time) but if you don't NEED the fully server I'd recommend you go with the frontend variant. That goes like this: await supabase.auth.resetPasswordForEmail('hello@example.xyz, { redirectTo: 'example.com/account/update-password', }) This will send an e-mail to hello[at]example.xyz containing something like auth-service-url/?token=...&redirectTo=example.com/account/update-password which, when clicked, will verify the token and immediately redirect to the redirectTo URL but add a small code to it (you don't see that because the process is too fast but if you make your network connection really slow, you can watch it). And on THAT page there must be a frontend client (browser client) instantiated. The pure existence of that authenticates the user - so, obviously it must be a URL that is reachable without a valid login. Then, you want to redirect/refresh the page when the authentication is done. And for that you don't have to do much but listen for the event in the frontend client: supabase.onAuthStateChange(event => { if (event==='SIGNED_IN') refreshOrRedirectPage(); }) Hope that helps.
@activenode10 ай бұрын
see my comment for @austingebauer4532
@ivan.jeremicАй бұрын
love next but who came up with a cookie api like that one 'cookie().get'? 🤣