GET类型接口调用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GET类型接口调用相关的知识,希望对你有一定的参考价值。
参考技术A ···import requests
import json
upGradeUrl = ' https://api.test.cn/restt'
def requestsMethodForPost(param):
url = upGradeUrl + '?'
print(param)
request = requests.post(url, data=param)
response = request.text
print('API返回:')
respDic = json.loads(response)
print(json.dumps(respDic, ensure_ascii=False))
return respDic
···
以上是关于GET类型接口调用的主要内容,如果未能解决你的问题,请参考以下文章
Python如何写get接口或者post接口,提供给别人调用
SpringCloud Feign调用服务接口时,GET请求变成POST请求报错 _