-
I'm currently implementing Stripe Checkout with the Pay gem and have been able to successfully set up the checkout redirect with the following:
This adds proper entries in my Stripe dashboard with the correct data, but doesn't automatically add Pay::Subscription or Pay::Charge records in my rails app. Per the documentation, those records should have been automatically added. Am I missing something or do I need to add those records upon success? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
As per the docs, you need to run the stripe cli locally to listen to webhooks. This is required. |
Beta Was this translation helpful? Give feedback.
As per the docs, you need to run the stripe cli locally to listen to webhooks. This is required.