[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:
stripe({
stripeClient: StripeSDK,
stripeWebhookSecret: STRIPE_WEBHOOK_SECRET,
createCustomerOnSignUp: true,
schema: {
subscription: {
modelName: "stripeSubscriptions",
fields: {
plan: "planName",
status: "status"
},
}
},
onCustomerCreate: async({ customer, stripeCustomer, user }, request) => {
await userCollection.updateOne(
{ _id: new ObjectId(user.id) },
{ $set: { customerId: stripeCustomer.id } }
)
},
subscription: {
enabled: true,
plans: [
{
name: "basic",
priceId: "price_1",
}
]
}
})
stripe({
stripeClient: StripeSDK,
stripeWebhookSecret: STRIPE_WEBHOOK_SECRET,
createCustomerOnSignUp: true,
schema: {
subscription: {
modelName: "stripeSubscriptions",
fields: {
plan: "planName",
status: "status"
},
}
},
onCustomerCreate: async({ customer, stripeCustomer, user }, request) => {
await userCollection.updateOne(
{ _id: new ObjectId(user.id) },
{ $set: { customerId: stripeCustomer.id } }
)
},
subscription: {
enabled: true,
plans: [
{
name: "basic",
priceId: "price_1",
}
]
}
})
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.
Jump to solution
7 Replies
rtmorgan
rtmorgan5w ago
Could you post the portion of your source code where you are calling client.subscription.upgrade and setting the successUrl? thank you
Vivillies
VivilliesOP5w ago
This would be the function that gets called.
async function createSession(){
const { error } = await authClient.subscription.upgrade({
plan: "basic",
successUrl: "/dashboard",
cancelUrl: "/"
})
if (error){
alert(error.message)
}
}
async function createSession(){
const { error } = await authClient.subscription.upgrade({
plan: "basic",
successUrl: "/dashboard",
cancelUrl: "/"
})
if (error){
alert(error.message)
}
}
rtmorgan
rtmorgan5w ago
What is your 'baseURL' set to in your authClient config? thank you
Vivillies
VivilliesOP5w ago
export const authClient = createAuthClient({
baseURL: "http://localhost:5173",
plugins: [
inferAdditionalFields<typeof auth>(),
adminClient(),
stripeClient({
subscription: true
})
]
})
export const authClient = createAuthClient({
baseURL: "http://localhost:5173",
plugins: [
inferAdditionalFields<typeof auth>(),
adminClient(),
stripeClient({
subscription: true
})
]
})
Solution
rtmorgan
rtmorgan5w ago
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.
Vivillies
VivilliesOP5w ago
Alrighty. Just tested it out. Providing the entire route seems to work perfectly fine. Thanks for your help 🙏
rtmorgan
rtmorgan5w ago
thank you for patiently testing my theories 😀 I'm glad it's working!

Did you find this page helpful?