Created
March 25, 2019 20:04
-
-
Save chrisjsimpson/7ba6b7a58104ca3b49dd9d4990788dce to your computer and use it in GitHub Desktop.
OBP generate direct login token
This file contains 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
''' | |
You need to install pythin requests library for this to work | |
e.g. pip install requests | |
You also need to use python3 | |
''' | |
import requests | |
consumer_key = input("Consumer Key --> ") | |
username = input("Username --> ") | |
password = input("Password --> ") | |
url = input("Endpoint URL --> ") | |
authorization = 'DirectLogin username="{}", password="{}", consumer_key="{}"'.format(username, password, consumer_key) | |
headers={ | |
'Accept': 'application/json', | |
'Authorization': authorization | |
} | |
req = requests.post(url, headers=headers) | |
print("Your access token is:") | |
print(req.text) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment