在Python中,您可以使用requests
库来发送带有自定义请求头的HTTP请求
pip install requests
然后,您可以使用以下代码示例发送带有自定义请求头的GET请求:
import requests url = "https://api.example.com/data" headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3", "Authorization": "Bearer your_access_token", "Accept": "application/json" } response = requests.get(url, headers=headers) print(response.text)
在这个例子中,我们设置了三个自定义请求头:User-Agent
,Authorization
和Accept
。您可以根据需要修改这些值。