简体   繁体   中英

How to make url request in python with authorization

I am querying an api with postman which requires the following header/auth to set在此处输入图像描述

How do I set these params programmatically in requests library or some other library

Answering my own question.. as none of the suggestions mentioned in the comments worked for me.

headers = {
  'X-API-KEY': 'API_KEY'
}

response = requests.request("GET", url, headers=headers)
print(response.text)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM