認証トークンを生成するためにエンドポイント localhost:8000/getauthtoken を作成しました。
認証トークンを取得するために使用しているcurlコマンドは次のとおりです。
curl --request POST --url localhost:8000/getauthtoken --header 'content-type: application/json' --data '{"username":"admin", "password":"admin123"}'
しかし、私は得ています
{"password":["This field is required."],"username":["This field is required."]}
しかし、コマンドでは、ユーザー名とパスワードの両方を渡しています
DRF ドキュメントhttp://www.django-rest-framework.org/api-guide/authentication/による と、これが正しい方法です。