Я пытаюсь отправить почтовый запрос в PayPal, чтобы получить маркер доступа, чтобы начать выполнять еще несколько запросов.
это дает мне 401 Unauthorized
Ошибка, вот мой код
def buy_confirm(request, amount, price, server_name, char_name):
if request.method == 'POST':
client_id = 'xxxxxxxxxxxxxxxxxxxxx'
client_secret = 'xxxxxxxxxxxxxxxxx'
headers = {
'Content-Type':'application/x-www-form-urlencoded',
'Authorization':"Basic " + client_id + ' ' + client_secret
}
body = {
'grant_type':'client_credentials'
}
r = requests.post("https://api.sandbox.paypal.com/v1/oauth2/token",body, headers)
print(r.status_code, r.reason)
return render(request, 'buy_confirm.html')