fatiharaci / spotweety

spotweety.club - a twitter analyzer for spotify
http://spotweety.club/
0 stars 0 forks source link

Django Rest Auth Issue on POSTMAN #16

Closed fatiharaci closed 7 years ago

fatiharaci commented 7 years ago

image

fatiharaci commented 7 years ago

Following code on settings and re-entering the password solved the issue:

REST_FRAMEWORK = {

'DEFAULT_PERMISSION_CLASSES': [
    'rest_framework.permissions.IsAdminUser',
    **'rest_framework.authentication.TokenAuthentication',**
],
'PAGE_SIZE': 10

}

image