无法解析Microsoft Power Automation上的响应

时间:2020-06-03 01:43:25

标签: azure-automation power-automate office365connectors

我当前正在使用带有API密钥作为身份验证类型(查询)的自定义连接器。我正在使用轮询作为触发类型并向该端点请求

https://xxxx.co/api/trigger/contacts 但是在测试过程中,我遇到了这个错误。

{
  "error": {
    "code": 500,
    "message": "Unable to parse response.",
    "source": "asia-001.azure-apim.net",
    "path": "choose[3]\\when[1]\\choose\\when[1]",
    "clientRequestId": "5e47af66-fa06-4802-ae24-7413-6b0e2224"
  }
}

我的答复定义如下:

{
    "data": [
        {
            "id": 60,
            "email": "azureitsui@sample.com",
            "name": "Azure Itsui"
        },
        {
            "id": 59,
            "email": "hello@pureleads.co",
            "name": "Almond Hersheys"
        },
        {
            "id": 58,
            "email": "cubibalconi@yahoo.com",
            "name": "Cubi Balconi"
        },
        {
            "id": 57,
            "email": "sample@google.com",
            "name": "Yashica Mouse"
        }
    ]
}

然后我在收集触发数据上选择了@triggerBody()。data。在Postman上测试请求端点时,测试已成功完成并返回顶部显示的值。这是什么问题?

0 个答案:

没有答案