Polar Checkout not working

Hello guys, I'm working on a Nuxt project with better-auth and polar plugin. I have made this :
export default defineEventHandler(async (event) => {
const slug = getRouterParam(event, 'slug')!

console.log(slug)

try {
const data = await auth.api.polarCheckout({
query: {
productId: 'aee96d58-7509-4fd6-a429-f74e5461c145'
},
params: { slug },
headers: event.headers
})

console.log(data)

return data
} catch (error) {
console.log('error', error)

throw createError({
statusCode: 500,
statusText: 'Internal Server Error'
})
}
})
export default defineEventHandler(async (event) => {
const slug = getRouterParam(event, 'slug')!

console.log(slug)

try {
const data = await auth.api.polarCheckout({
query: {
productId: 'aee96d58-7509-4fd6-a429-f74e5461c145'
},
params: { slug },
headers: event.headers
})

console.log(data)

return data
} catch (error) {
console.log('error', error)

throw createError({
statusCode: 500,
statusText: 'Internal Server Error'
})
}
})
When I make a request to this handler with an authenticated user, the request fail with code 500 so it go in the catch scope and when I log my error I see nothing.
No description
2 Replies
Ping
Ping4w ago
Hey could you open an issue on the Polar github instead? It seems it could be a Polar plugin bug. https://github.com/polarsource/polar
GitHub
GitHub - polarsource/polar: An open source engine for your digital ...
An open source engine for your digital products. Sell SaaS and digital products in minutes. - polarsource/polar
David
DavidOP4w ago
ok

Did you find this page helpful?