我无法进行简单的API调用。希望我能得到一些帮助。我已经尝试过此请求的几种变体,但始终得到相同的结果。我已经尝试过根据此站点上发布的先前请求提供的许多解决方案,但似乎没有一个对我有帮助。
我要发出的请求:
import requests
import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
url = "https://api.ramcoams.com/api/v2/"
headers = {'Key': 'My_Key', 'operation':'GetEntityTypes'}
response = requests.post( url, headers=headers, verify=False)
print(response.text)
我得到的答复是:
{"ResponseCode":400,"ResponseText":"Key parameter missing."}
最后,API的文档为here: