dj-stripe: 1.0.0 not triggering webhooks?

I’m on django 1.10.4.

I have used this code to test the reception of webhooks:

@receiver(WEBHOOK_SIGNALS['customer.subscription.created'])
def subscription_created(sender, **kwargs):
    print('subscription created')

When I create the subscription, I see the event created in the db and an invoice is sent. So all seems well. However, this webhook signal never triggers.

About this issue

  • Original URL
  • State: closed
  • Created 7 years ago
  • Comments: 23 (12 by maintainers)

Most upvoted comments

@kavdev I would be more than happy to help if you want. I did a lot of reverse engineering and I’m still doing as we speak since I want to implement features such as collecting invoices, generate them by logged in user and guest checkout.

I liked the REST side of things but again, it would be great to have that documented and with more features since REST is becoming the new norm, this way dj-stripe will become a massive reference for the django world and widely used (even more).

Looking forward to the news 😃