Back
Checkout error: Error: Request body is empty or invalid JSON. Please check network payload
- 0
- Functions
- Cloud
Im absolutely stumped here.
TypeScript
stripe.ts:74 Calling Appwrite function with payload: {price_id: 'price_1RdZzoDCvcSnLsdCCu8z3KeQ', mode: 'subscription', success_url: 'http://localhost:4321/success', cancel_url: 'http://localhost:4321/', userId: '685abbdb0024f9a2f56f'}
stripe.ts:74 Calling Appwrite function with payload: {price_id: 'price_1RdZzoDCvcSnLsdCCu8z3KeQ', mode: 'subscription', success_url: 'http://localhost:4321/success', cancel_url: 'http://localhost:4321/', userId: '685abbdb0024f9a2f56f'}
stripe.ts:88 Function execution response: {$id: '685b5515e1d8ebe386e3', $createdAt: '2025-06-25T01:47:01.941+00:00', $updatedAt: '2025-06-25T01:47:01.941+00:00', $permissions: Array(1), functionId: 'stripe-checkout', …}
stripe.ts:131 Checkout error: Error: Request body is empty or invalid JSON. Please check network payload.
at handleCheckout (stripe.ts:106:19)
at async HTMLButtonElement.<anonymous> (stripe.ts:46:13)
overrideMethod @ hook.js:608
handleCheckout @ stripe.ts:131
await in handleCheckout
(anonymous) @ stripe.ts:46Understand this error
stripe.ts:88 Function execution response: {$id: '685b5515e0378b9a5a31', $createdAt: '2025-06-25T01:47:01.939+00:00', $updatedAt: '2025-06-25T01:47:01.939+00:00', $permissions: Array(1), functionId: 'stripe-checkout', …}
stripe.ts:131 Checkout error: Error: Request body is empty or invalid JSON. Please check network payload.
at handleCheckout (stripe.ts:106:19)
at async HTMLButtonElement.<anonymous> (stripe.ts:46:13)```
thats my console errors rn.
anyone else know an easy fix?
TL;DR
Checkout process is throwing an error due to invalid JSON in the request body. Error seems to be originating from line 106 in the code. Check the network payload for errors.What's the code? What's at the different line references if the stack trace?
Recommended threads
- Oauth issue
Hi, can anyone help me in the Oauth issue, Its working fine in dev but its showing Invalid redirect during production. I have check the redirect url and all. St...
- Google/Apple OAuth to show continue to "...
hi everyone, I am building a react-native app with expo and appwrite. I have setup an OAuth flow with Google and Apple following this doc (https://appwrite.io/b...
- Function permissions
In my app I have a CreateUser flow which makes several documents and at the end uses the functions.createExecution() to call a server-side function to create a ...