Top "Django-rest-framework" questions

A powerful and flexible toolkit for building RESTful Web APIs.

How to disable admin-style browsable interface of django-rest-framework?

I am using django-rest-framework. It provides an awesome Django admin style browsable self-documenting API. But anyone can visit those pages …

django django-rest-framework
How to use TokenAuthentication for API in django-rest-framework

I have a django project, using django-rest-framework to create api. Want to use token base authentication system so api call …

python django django-authentication django-rest-framework
Django Rest Framework and JSONField

Given a Django model with a JSONField, what is the correct way of serializing and deserializing it using Django Rest …

python django django-models django-rest-framework
Capture parameters in django-rest-framework

suppose this url: http://localhost:8000/articles/1111/comments/ i'd like to get all comments for a given article (here the 1111). This …

django django-rest-framework
What are the differences between django-tastypie and djangorestframework?

Why would you use one over the other, for exposing an API for your Django app? http://pypi.python.org/…

django api rest django-rest-framework
Django serializer Imagefield to get full URL

I am beginner to Django and currently, I can construct model like this. models.py class Car(models.Model): name = …

python django django-rest-framework
Return the current user with Django Rest Framework

I am currently developing an API using Django. However, I would like to create a view that returns the current …

python django api django-rest-framework
Python Django Rest Framework UnorderedObjectListWarning

I upgraded from Django 1.10.4 to 1.11.1 and all of a sudden I'm getting a ton of these messages when I run …

python django django-rest-framework
TemplateDoesNotExist - Django Error

I'm using Django Rest Framework. and I keep getting an error Exception Type: TemplateDoesNotExist Exception Value: rest_framework/api.html …

python django django-rest-framework
When to use Serializer's create() and ModelViewset's create() perform_create()

I want to clarify the given documentation of django-rest-framework regarding the creation of a model object. So far I found …

python django serialization django-rest-framework