azure 逻辑应用程序:带路径变量的HTTP GET请求

b1uwtaje  于 2023-02-25  发布在  其他
关注(0)|答案(1)|浏览(137)

我有一个API与获取请求和路径变量,我已经测试了它在 Postman 它的工作正常。我必须调用它在逻辑应用程序,但我找不到任何标签,我可以通过路径变量,而调用逻辑应用程序。

xuo3flqw

xuo3flqw1#

是的,我同意@Anshul Dubey,从我的复制结束后,我可以通过改变网址以及所需的头,即{ "Accept": "*/*"}得到这个工作。考虑到http://restful-booker.herokuapp.com/booking/:id这是我的网址以及路径变量提到。我用http://restful-booker.herokuapp.com/booking/1,我从代码片段的 Postman 到它在逻辑应用程序中工作。
在 Postman :

在逻辑应用程序中:

下面是我的逻辑应用程序的代码视图:

{
    "definition": {
        "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
        "actions": {
            "HTTP": {
                "inputs": {
                    "headers": {
                        "Accept": "*/*"
                    },
                    "method": "GET",
                    "uri": "http://restful-booker.herokuapp.com/booking/1"
                },
                "runAfter": {},
                "type": "Http"
            }
        },
        "contentVersion": "1.0.0.0",
        "outputs": {},
        "parameters": {},
        "triggers": {
            "manual": {
                "inputs": {
                    "schema": {}
                },
                "kind": "Http",
                "type": "Request"
            }
        }
    },
    "parameters": {}
}

相关问题