A powerful and flexible toolkit for building RESTful Web APIs.
I am developing a 1-page application in AngularJS using and Django Rest Framework + Django CORS Headers. My problem is that …
django angularjs cors django-rest-framework django-cors-headersIs there a best practice to assign a different permission to each action of a given APIView or ViewSet? Let's …
python django django-rest-framework django-permissionsI am following a tutorial located here that uses Django Rest Framework, and I keep getting a weird error about …
python django serialization django-rest-framework django-1.7I have implemented the Token Authentication according to the django rest framework Docs. Form what I read, the Token Authentication …
login django-rest-framework token logout http-token-authenticationI am writing an API using Django REST Framework and I am wondering if can specify permissions per method when …
python django rest permissions django-rest-frameworkI am getting the error ".accepted_renderer not set on Response resp api django". I am following the django rest-api …
python django django-rest-frameworkI'm using Memcached as backend to my django app. This code works fine in normal django query: def get_myobj(): …
python django caching django-rest-framework memcachedIn Django Rest Framework, how do you filter a serializer when it's nested in another serializer? My filters are imposed …
django django-rest-frameworkI have a question about dealing with m2m / through models and their presentation in django rest framework. Let's take …
python django django-rest-frameworkIs it possible to get the current user in a model serializer? I'd like to do so without having to …
python django serialization django-rest-framework