Skip to content

Instantly share code, notes, and snippets.

@kabir0st
Created October 1, 2019 11:27
Show Gist options
  • Save kabir0st/486e0b7c9bb0efab72ac82cdc25d71e9 to your computer and use it in GitHub Desktop.
Save kabir0st/486e0b7c9bb0efab72ac82cdc25d71e9 to your computer and use it in GitHub Desktop.
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