I can successfully connect via CURL using the example posted in their documentation here:
http://getblimp.github.io/django-rest-framework-jwt/#usage
The problem comes from trying to use Postman. I set the authorization to Basic and put in my username/password and I get a 400 response with the following json:
{
"username": [
"This field is required."
],
"password": [
"This field is required."
]
}
I'm not sure if I'm missing something obvious.