工作流验证失败错误:无法从逻辑应用调用该函数。它不能有自定义路线

问题描述 投票:0回答:1

保存调用函数应用程序的逻辑应用程序工作流程时出现以下错误

Workflow validation failed for the workflow ''. {"error":{"code":"InvalidFunctionRoute","message":"The function '/subscriptions/{subid}/resourceGroups/{myresourcegroup}/providers/Microsoft.Web/sites/{nameoffunction}/functions/myfunctionapp' cannot be called from a logic app. It must not have a custom route."}}

我的函数应用程序和逻辑应用程序都位于同一资源组中。

函数app是一个python .py文件,代码如下:

print("Hello World!")

如何调试这个错误?

enter image description here

azure-functions azure-logic-apps
1个回答
0
投票

您无法使用该连接器调用具有自定义路由的函数。您可以使用 HTTP 操作,如下所示:

enter image description here

获取函数URL:

开放功能:

enter image description here

您可以选择以下任意一项:

enter image description here

这样您就可以使用自定义路由调用函数应用程序。

输出:

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.