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接口,提供给别人调用

java反射调用方法可以传非基本类型吗?如对象、接口

SpringCloud Feign调用服务接口时,GET请求变成POST请求报错 _

通过Hutool 调用远程API接口(POST/GET)

http请求POST和GET调用接口以及反射动态调用Webservices类

如何调用http接口获取json数据及GET/POST方式调用http接口