#storm_error
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1403310863636631644
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
To fetch my client secret I have the code:
const fetchClientSecret = () => {
const content = currentDeclaration.serviceContent.map((c: any) => ({
price: c.price.id,
quantity: owners?.length,
}));
return stripeService
.createCheckoutSession({ lineItems: content})
.then((response) => {
console.log('checkout session response', response);
return response.client_secret;
});
};
That is working and it return a checkout session response as it should with the client_secret.
But the when initilizing the CheckoutProvider it failes with the error message
๐
req_PUf9xYc7jme5oU
In backend Im using: 2025-07-30.basil
But I can se that frontend uses: 2025-03-31.basil in the request
you're not using the same sandbox when you're creating the checkout session and when you're retrieving it
huh. ohh..
rookie misstake. Let me check
Just created a new sandbox. Could I have missed that
holly.... Im sorry for taking your time.
Its working now. Thanks for the quick response
no worries
Have a nice day
would you mind me closing the thread if you don't have any other questions?