integrallis / stripe_event

Stripe webhook integration for Rails applications.
https://rubygems.org/gems/stripe_event
MIT License
842 stars 105 forks source link

can't find how to test webhook using stripe dashboard #10

Closed webmagnets closed 11 years ago

webmagnets commented 11 years ago

I can't see any option on the stripe dashboard to "create test payments, customers, etc."

Am I blind? (I am in test mode)

invisiblefunnel commented 11 years ago

You can click "Create you first {customer,plan,coupon}" to create records and trigger webhooks. It seem the payments UI has changed a bit though. Previously it was possible to create payments from the dashboard without a customer, but I don't see UI for that anymore. Instead you can add a customer and create payments directly on the customer using the provided card numbers to simulate transactions.

Alternatively, (assuming your api key is set) you could drop into rails console and interact with the API directly: https://stripe.com/docs/api#create_charge, etc.

Let me know if you need more detail, I'm happy to help where I can.