跨多个实例的唯一逻辑应用程序标识符

Logic App identifier unique across multiple instances

我有一个从逻辑应用程序触发的 Azure 函数。我需要在我的 Azure 函数中添加一个唯一 ID。 目前,我正在使用由 Logic Apps 创建的标识符。我想检查逻辑应用程序中的这个“标识符”在多个逻辑应用程序实例中是否是唯一的。感谢您的帮助。

您可以在执行过程中使用以下表达式获取实例逻辑应用程序的标识符:

workflow()['run']['name']

这个(标识符)对于每个 运行 实例都是 唯一的