我有一个API与获取请求和路径变量,我已经测试了它在 Postman 它的工作正常。我必须调用它在逻辑应用程序,但我找不到任何标签,我可以通过路径变量,而调用逻辑应用程序。
xuo3flqw1#
是的,我同意@Anshul Dubey,从我的复制结束后,我可以通过改变网址以及所需的头,即{ "Accept": "*/*"}得到这个工作。考虑到http://restful-booker.herokuapp.com/booking/:id这是我的网址以及路径变量提到。我用http://restful-booker.herokuapp.com/booking/1,我从代码片段的 Postman 到它在逻辑应用程序中工作。在 Postman :
{ "Accept": "*/*"}
http://restful-booker.herokuapp.com/booking/:id
http://restful-booker.herokuapp.com/booking/1
在逻辑应用程序中:
下面是我的逻辑应用程序的代码视图:
{ "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": {} }
1条答案
按热度按时间xuo3flqw1#
是的,我同意@Anshul Dubey,从我的复制结束后,我可以通过改变网址以及所需的头,即
{ "Accept": "*/*"}
得到这个工作。考虑到http://restful-booker.herokuapp.com/booking/:id
这是我的网址以及路径变量提到。我用http://restful-booker.herokuapp.com/booking/1
,我从代码片段的 Postman 到它在逻辑应用程序中工作。在 Postman :
在逻辑应用程序中:
下面是我的逻辑应用程序的代码视图: