#wiiim

1 messages ยท Page 1 of 1 (latest)

main estuaryBOT
whole dawn
#

๐Ÿ‘‹ Thanks for reaching out

stoic relic
#

Hey ๐Ÿ™‚

#

A scenario came into my mind: We hit rate limiting for the Stripe API for whatever reason, or there is another issue when requesting the api (e.g. finalizing an invoice). Does the Java Client automatically retries after x seconds if it fails?

whole dawn
#

In Java, you can do: Stripe.setMaxNetworkRetries(2);

stoic relic
#

Oh, alright. That's all?

whole dawn
#

yes

stoic relic
#

Okay, thank you ๐Ÿ™‚ I have one more question about subscriptions. We are backdating every subscription to the first of the month and are waiting on the webhook for the payment success and then generating something in our backend. Would there be a problem (on stripe's side, not our backend side) if we have 10,000 subscriptions? Is the webhook rate-limited too?

whole dawn
#

Not for webhooks, you may receive them in delay if you are creating multiple subscription in a short period of time...

stoic relic
#

Great, that'll answer all my questions. Thank you very much ๐Ÿ™‚

whole dawn
#

Np!