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服务接口的主要内容,如果未能解决你的问题,请参考以下文章