Answers for "check bearer token in header python"

4

add bearer token in python request

import requests

auth_token='sdfghjkloerdtfyguhiopfghjkl;fghjkl'
hed = {'Authorization': 'Bearer ' + auth_token}
data = {'app' : 'aaaaa'}

url = 'https://api.xy.com'
response = requests.post(url, json=data, headers=hed)
print(response)
print(response.json())
Posted by: Guest on January-16-2021

Python Answers by Framework

Browse Popular Code Answers by Language