[Answer]-Tastypie ManyToManyField giving 401 on post/patch/put

1👍

In your tent meta you have:

allowed_methods = [‘get’]

Posting a tent is thereby not allowed.
Add ‘post’ to the allowed methods.

Leave a comment