9 lines
323 B
Python
9 lines
323 B
Python
import json
|
|
import requests
|
|
|
|
application_id = '502910c1c785c3c7ca2e83c9e89bde02'
|
|
nofollow = 1
|
|
url = 'https://api.worldoftanks.ru/wot/auth/login/'
|
|
redirect_url = 'http://truesoft.org:5000/login'
|
|
|
|
print requests.get('{}?application_id={}&nofollow={}&redirect_uri={}'.format(url, application_id, nofollow, redirect_url)).text
|