[SvelteKit] Stripe checkout redirects to /api/auth/dashboard
I made a checkout which is being initiated within a
/dashboard
route. Once finalized/succeeded, the stripe plugin redirects the users to a /api/auth/dashboard
route., although it should go to /dashboard
automatically
Current setup:
Solution:Jump to solution
Can you test with setting 'successUrl' to the full url of the dashboard, "http://localhost:5173/dashboard" thank you - I believe there is url parsing logic (internally) on the options that will support using a full url as well.
7 Replies
Could you post the portion of your source code where you are calling client.subscription.upgrade and setting the successUrl? thank you
This would be the function that gets called.
What is your 'baseURL' set to in your authClient config? thank you
Solution
Can you test with setting 'successUrl' to the full url of the dashboard, "http://localhost:5173/dashboard" thank you - I believe there is url parsing logic (internally) on the options that will support using a full url as well.
Alrighty. Just tested it out. Providing the entire route seems to work perfectly fine. Thanks for your help 🙏
thank you for patiently testing my theories 😀 I'm glad it's working!