Ich habe eine REST-API in Django mit Django-Rest-Framework implementiert und oauth2 zur Authentifizierung verwendet.
Ich habe getestet mit:
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/
und
curl -H "Authorization: Bearer <your-access-token>" http://localhost:8000/api/
auf localhost mit erfolgreichen Ergebnissen im Einklang mit der Dokumentation.
Als ich dies auf eine vorhandene AWS-Instanz für elastische Bohnenstangen hochschob, erhielt ich:
{ "detail" : "Authentication credentials were not provided." }