文章目录
1 Introduction
Python调用RESTful Service的方法, 推荐使用 requests 库
https://2.python-requests.org/en/master/
2 调用示例
import requests
url = 'http://10.203.10.10/api/v4/posts'
# Setting Headers
header_dict = dict()
header_dict['Content-Type'] = 'application/json'
header_dict[