从 Azure Python 调用 Azure 逻辑应用 HTTP 触发函数
Calling Azure logic app from Azure Python HTTP trigger function
我想从基于 Azure python 的 HTTP 触发函数调用 Azure 逻辑应用程序。这是我的 python 函数的结束行(返回语句),它返回预期值:
return func.HttpResponse(successres)
else:
return func.HttpResponse(failedsres)
现在我想通过将 'successres' 作为 JSON 正文传递来调用基于 HTTP 触发器的逻辑应用程序。
任何帮助都会很棒。
Create a callable endpoint 为您的应用程序调用它。
还有一些details here。
我想从基于 Azure python 的 HTTP 触发函数调用 Azure 逻辑应用程序。这是我的 python 函数的结束行(返回语句),它返回预期值:
return func.HttpResponse(successres)
else:
return func.HttpResponse(failedsres)
现在我想通过将 'successres' 作为 JSON 正文传递来调用基于 HTTP 触发器的逻辑应用程序。
任何帮助都会很棒。
Create a callable endpoint 为您的应用程序调用它。
还有一些details here。