如何将字典作为 python 中 post 请求中的参数作为 json 对象传递? IE 我的参数 = { “用户ID”:“数据”, "我的书":{'Title1':'ABC','Title2':'XYZ'} };
我尝试通过 myList = {'标题1':'ABC','标题2':'XYZ'} 我的参数 = { “用户ID”:“数据”, "我的书":"我的列表" };
这不起作用。
data
参数。
requests.post("your url", data={key1: value1, key2: value2})
https://requests.readthedocs.io/en/latest/user/quickstart/#more-complicated-post-requests