degubowanie
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Jakub K 2024-01-22 22:36:17 +01:00
parent 676b4b9b20
commit 176f3eea6f

View File

@ -93,13 +93,17 @@ class GetAuthTokenView(APIView):
authentication_classes = []
permission_classes = []
def post(self, request):
print("GET ID")
client_id = settings.REACT_CLIENT_ID
client_secret = settings.REACT_CLIENT_SECRET
print("GET SECRET")
headers = {'Content-Type': 'application/x-www-form-urlencoded'}
data = {
'grant_type': 'client_credentials',
'client_id': client_id,
'client_secret': client_secret,
"grant_type": "client_credentials",
"client_id": client_id,
"client_secret": client_secret,
"redirect_uri": "http://izaac.izaac.pl/noexist/callback"
}
print("DATA READY")
response = requests.post('http://izaac.izaac.pl/o/token/', data=data, headers=headers)
return Response(response.json())