This commit is contained in:
parent
676b4b9b20
commit
176f3eea6f
@ -93,13 +93,17 @@ class GetAuthTokenView(APIView):
|
|||||||
authentication_classes = []
|
authentication_classes = []
|
||||||
permission_classes = []
|
permission_classes = []
|
||||||
def post(self, request):
|
def post(self, request):
|
||||||
|
print("GET ID")
|
||||||
client_id = settings.REACT_CLIENT_ID
|
client_id = settings.REACT_CLIENT_ID
|
||||||
client_secret = settings.REACT_CLIENT_SECRET
|
client_secret = settings.REACT_CLIENT_SECRET
|
||||||
|
print("GET SECRET")
|
||||||
headers = {'Content-Type': 'application/x-www-form-urlencoded'}
|
headers = {'Content-Type': 'application/x-www-form-urlencoded'}
|
||||||
data = {
|
data = {
|
||||||
'grant_type': 'client_credentials',
|
"grant_type": "client_credentials",
|
||||||
'client_id': client_id,
|
"client_id": client_id,
|
||||||
'client_secret': client_secret,
|
"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)
|
response = requests.post('http://izaac.izaac.pl/o/token/', data=data, headers=headers)
|
||||||
return Response(response.json())
|
return Response(response.json())
|
||||||
Loading…
x
Reference in New Issue
Block a user