#gyges_api
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/1285720004389638288
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello! The real answer is that you shouldn't be using test mode for scaling or load tests. If you want to perform scaling or load tests you should do so on your own infrastructure and mock Stripe API responses.
Test mode is for helping you build and test the functionality of your integration, it's not for scaling or load testing. It has different limits and behavior for things like rate limits vs. live mode, so it's going to give you inaccurate results regardless.
Generally we do mock for tests, but before major product launches we will roll through a test set of products that are configured with anonymized data to ensure the api is returning the expected results for this specific payment flow on our site.
That makes sense, but that doesn't sound like something you would need 4,000 Customers for.
Well we have many different products and many of them are configured differently, IE different locales/configurations/card types ect.
So there is some reason there are that many customers
Alright, well, in any case I would recommend making these updates with the API. You should not attempt to automate any Stripe UIs.
Alright, there isn't any other alternative that could make that less of a pain?
No, there's no way to bulk update or anything like that. The easiest way to do this is to write a script that will make the API requests.
Okay, thanks