https://tech.yandex.ru/oauth/doc/dg/reference/auto...
Вот что в документации:
POST /token HTTP/1.1
Host: oauth.yandex.ru
Content-type: application/x-www-form-urlencoded
Content-Length: <длина тела запроса>
[Authorization: Basic <закодированная строка client_id:client_secret>]
grant_type=authorization_code
& code=<код подтверждения>
Ответом должен быть json. Code у меня есть.
Пока дошел до такого кода:
import requests
import json
headers = {'Content-type': 'application/x-www-form-urlencoded'}
data = {'grant_type': 'authorization_code', 'code':'xxxxxxx'}
response = requests.post('http://oauth.yandex.ru', headers = headers, data=data)