[Answer]-Twilio_view decorator in twilio-django always giving 403

1👍

I’m the maintainer of django-twilio library. First things first, what version of django-twilio are you using?

Run pip freeze to check:

$ pip freeze
...
django-twilio==0.7.1

I’d recommend upgrading to 0.7.1 and trying that out and seeing if it fixes the problem.
I did just push out an update related to this, so it might fix it.

Can you please open an issue on github in case this is a larger problem?

EDIT: The bug introduced in 0.7.1 means you should revert back to 0.7 with pip:

$ pip uninstall django-twilio
...
$ pip install django-twilio==0.7
👤phalt

Leave a comment