python用post访问restful服务接口

Posted shaomine

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python用post访问restful服务接口相关的知识,希望对你有一定的参考价值。

  具体代码如下:

    

import requests
import json
data={"ids": ["00007190","00007191"]}

url="http://XXXXX"
data_json = json.dumps(data)
headers = {Content-type: application/json}
response = requests.post(url, data=data_json, headers=headers)
print(response.text)

 

以上是关于python用post访问restful服务接口的主要内容,如果未能解决你的问题,请参考以下文章

python使用httplib2访问REST服务的例子

SoupUI接口测试学习分享

请教Django REST framework的一些问题

Restful接口规范

Jersey写Restful接口获取参数的问题

如何使用 REST/JSON/GET/POST 从我的节点服务器访问我的 couchdb?