Created
October 1, 2019 11:27
-
-
Save kabir0st/486e0b7c9bb0efab72ac82cdc25d71e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
url = "https://auth.riotgames.com/api/v1/authorization" | |
payload = {'type': "auth", 'username': "Evalmaryl", 'password': "2kVSb6OQGoFRF3Q7", 'region': "EUW1", 'remember': False} | |
x = requests.post(url, payload) | |
print(x.text) | |
print(x.content) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment