TypeError while using django rest framework tutorial

前端 未结 5 873
无人共我
无人共我 2020-12-30 22:19

I am new to using Django Rest framework, i am following this tutorial Django-Rest-Framework

Instead of snippets my model consists of a userprofile as given belo

5条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-30 22:55

    In my case the typo was in views.py. Instead of ...

    permission_classes = (permissions.IsAuthenticated,)
    

    ... I had ...

    permission_classes = (permissions.IsAuthenticated)
    

提交回复
热议问题