"detail" : "Method " GET\ " not allowed." in 令牌身份验证 Django rest 框架



我正试图通过以下方式构建一个基于令牌的身份验证系统https://www.django-rest-framework.org/api-guide/authentication/.

但在发送请求时,我收到了一条错误消息作为响应:

{"detail":不允许使用"Method"GET">

以下是我迄今为止尝试的内容:

urls.py

urlpatterns = [
path('api-token-auth/', views.obtain_auth_token),
]

型号.py

@receiver(post_save, sender=settings.AUTH_USER_MODEL)
def create_auth_token(sender, instance=None, created=False, **kwargs):
if created:
Token.objects.create(user=instance)

views.py

def index(request):
return render(request,'index.html')

任何帮助都是有益的。

您需要进行发布请求。

相关内容

  • 没有找到相关文章

最新更新