Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in django-rest-framework

Could not import 'rest_framework_jwt.authentication.JSONWebTokenAuthentication' for API setting 'DEFAULT_AUTHENTICATION_CLASSES'

Custom 404 and 500 pages in django with -> DEBUG = True

Django and react login with google authentication

How to use PrimaryKeyRelatedField to update categories on a many-to-many relationship

Out of range float values are not JSON compliant with Django render

How do I customise the default 404 response for a URL not found error using Django Rest Framework?

Uploading base64 images using ModelSerializers in Django/django-rest-framework

How to implement Next Auth v.5 for external API login in Next js 14 and app router

How to return JWT token after user created in Django?

Why am I getting a "no module named urls" error for django rest framework swagger?

Django, Vue - How to pass prop from Django to Vue

change datetime field to return unix timestamp in django rest framework

In Django Rest Framework how can I return errors (warnings) from validation / serialization without failing the validation?

django-rest-framework

Python Django get distinct queryset by month from a DateField

How to check_object_permissions on @api_view functions?

Why I cannot register '.as_view()' in the Django router (using djangorestframework-simplejwt)?

What is different between `request.data['param-name'] ` or `request.data.get('param-name')` in Django