似乎找不到请求的 requestID 参数问题 header
Can't seem to find the issue with the requestID parameter for the request header
我正在尝试从使用 "similar standard to JSON RPC" 的 REST API 中提取数据。根据文档 here and here,我传递的参数看起来是正确的。
我收到的错误是 ...message:"Header missing request ID"...
。我不确定我缺少什么可以正确声明 requestID。
我查看了通过 API 提供的文档,我正在尝试从中提取数据,但考虑到它都在 PHP 和 cURL 中,这不是很有帮助。我正在尝试使用 python-requests 完成此任务。
getParams = {'method': 'getCustomers', 'params':{'where':'', 'limit': 2}, 'id': 'getCustomers'}
结果:
{"result":null,"error":{"code":102,"message":"Header missing request ID","data":[]},"id":null}
return 结果应包含 JSON 格式的所有客户及其属性的列表。
事实证明我使用的代码没有任何问题。我尝试调用的 API 有问题。
我正在尝试从使用 "similar standard to JSON RPC" 的 REST API 中提取数据。根据文档 here and here,我传递的参数看起来是正确的。
我收到的错误是 ...message:"Header missing request ID"...
。我不确定我缺少什么可以正确声明 requestID。
我查看了通过 API 提供的文档,我正在尝试从中提取数据,但考虑到它都在 PHP 和 cURL 中,这不是很有帮助。我正在尝试使用 python-requests 完成此任务。
getParams = {'method': 'getCustomers', 'params':{'where':'', 'limit': 2}, 'id': 'getCustomers'}
结果:
{"result":null,"error":{"code":102,"message":"Header missing request ID","data":[]},"id":null}
return 结果应包含 JSON 格式的所有客户及其属性的列表。
事实证明我使用的代码没有任何问题。我尝试调用的 API 有问题。