我有一个字典列表
list = [{'a':1,'b':2},{'c':3,'d':4}]
我需要通过python requests.put
方法发送此列表。我试着把
headers = {'Content-Type':'Application/json'}
requests.put(url, data=list, headers = headers)
但它说解压的参数太多了。 通过Google的RestClient设置内容类型到' application / json',此put设置成功。
如何为put请求设置标头?