fix bytes to string
Some checks reported errors
continuous-integration/drone Build was killed

This commit is contained in:
Jakub K 2024-01-28 17:09:26 +01:00
parent 75922bec90
commit ad3d470195

View File

@ -111,6 +111,6 @@ class GetAuthTokenView(APIView):
}
print(headers)
print("DATA READY")
response = requests.post('http://izaac.izaac.pl/o/token/', headers=headers, data=data)
response = requests.post('http://localhost:8000/o/token/', headers=headers, data=data)
print(response.text)
return Response(response.json())