网络编程
位置:首页>> 网络编程>> Python编程>> python requests.post带head和body的实例

python requests.post带head和body的实例

作者:差不多的人生  发布时间:2022-07-12 01:22:59 

标签:python,requests,post,head,body

如下所示:


# coding = utf-8
import requests
import json

host = "http://47.XX.XX.XX:30000"
endpoint=r"/api/v1/carXX/addCarXX"

url = ''.join([host,endpoint])
headers = \
 {
   "X-Member-Id": "23832170000",
   "X-Region": "1100000",
   "X-Channel": "01",
   "Content-Type": "application/json;charset=UTF-8"
 }
body = \
 {
   "designerId": "1111",
   "itemQuantity": 1,
   "sku": "000100000"
 }
r = requests.post(url,headers=headers,data=json.dumps(body))
#r = requests.post(url,headers=headers,json=body)
print r.text
print r.url

来源:https://blog.csdn.net/a2853963242/article/details/80420368

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com