django-rest-framework로 django에서 REST API를 구현하고 인증을 위해 oauth2를 사용했습니다.
나는 다음으로 테스트했습니다.
curl -X POST -d "client_id=YOUR_CLIENT_ID&client_secret=YOUR_CLIENT_SECRET&grant_type=password&username=YOUR_USERNAME&password=YOUR_PASSWORD" http://localhost:8000/oauth2/access_token/
과
curl -H "Authorization: Bearer <your-access-token>" http://localhost:8000/api/
문서와 일치하는 성공적인 결과를 가진 localhost에서.
이를 기존 AWS Elastic beanstalk 인스턴스로 푸시 할 때 다음을 받았습니다.
{ "detail" : "Authentication credentials were not provided." }