Django rest framework generic views, Serializers, and CRUD.Django rest framework project tutorial[8]

preview_player
Показать описание
Create, Update, and Delete Expenses. Django rest framework project tutorial[8]

Features Breakdown with Video Links:

Github Repository.

Рекомендации по теме
Комментарии
Автор

In case someone get "Invalid Token" error when try to verify the email. I had to add "algorithms=["HS256"] to payload variable. It's not reading HS256 as default algorithm for some reason. `payload = jwt.decode(token, settings.SECRET_KEY, algorithms=["HS256"])`

nihatmahser
Автор

you're amazing bro! i hate that you're so underrated. will share this for sure. subbed.

sakshamkapoor
Автор

Man..you killed it here..Your tutorials are 100% bad-ass. maybe you could make one on microservice architecture with drf..Whats remaining in these tutorials is every app/service to have their own independent database and instead of foreignkey they communicate through http...

pablogee
Автор

Appreciate the detail in these videos, good work!

femiojo
Автор

Great job sir, I am in trouble for login, registering my Django application. Solved my problem. I request you to make the social account login also.Great job sir.

ANSONSHAJI
Автор

Hello Semy Colon
Great work. I have a question how do I implement group policy for example If I only want users of a certain group to view/edit expenses(in the example project of yours)?

SamSam-rqfw
Автор

Great work, please try to make a video on frontend for clientside with the same project

ahmadshaik
Автор

thanks for wonderful series
I get this error when I want to try getting list of expenses in swagger even I did the authorization with token

"detail": "Authentication credentials were not provided."

I don't have this problem in postman
do you have any idea about it?

abdullahamini
Автор

for some reason the authorization part in swagger doesn't work (gives me no credentials given) however with postman i get the correct response. Any idea what went wrong?

mohammedkamel
Автор

Nice bro. please make social login with simplejwt tutorial.

masudmorshed
Автор

please make some projects in drf cryce its been so long you havent uploaded

utsabbashyal
Автор

This is a really great tutorial. Very useful !!

May someone point me how to solve the exception:
("Creating a ModelSerializer without either the 'fields' attribute or the 'exclude' attribute has been deprecated since 3.3.0, and is now disallowed. Add an explicit fields = '__all__' to the ExpenseSerializer serializer.", )

oruchovets
Автор

unable to perform put and delete getting invalid token :(

Shivam_Manswalia
Автор

Getting Error after providing Autherization Token >> {"detail":"Method \"GET\" not allowed."} in /expenses

CodeWithMukeshBadgujar