为已经可用的 REST API 创建交互点
Creating a Point Of Interaction for already available REST API's
我想将我的 REST API 连接到我在 Microsoft Azure 中的 Log Analytics Work space。
Where/How 提供我的 REST API 的 API 密钥和密钥为了在我的逻辑应用程序和我的 API?
之间建立连接
您可以为您的逻辑应用创建 Azure key vault and store your key in it, then use "Get secret" action in your logic app to access the key you stored just now. After that, you can use the key from "Get secret" action in your rest api in logic. By the way, you may need to grant permission 以访问 Azure Key Vault。我提供的页面显示了 PowerShell 和 Azure CLI 授予权限的方式,您也可以在 azure 门户上进行(如下截图所示)。
我想将我的 REST API 连接到我在 Microsoft Azure 中的 Log Analytics Work space。
Where/How 提供我的 REST API 的 API 密钥和密钥为了在我的逻辑应用程序和我的 API?
之间建立连接您可以为您的逻辑应用创建 Azure key vault and store your key in it, then use "Get secret" action in your logic app to access the key you stored just now. After that, you can use the key from "Get secret" action in your rest api in logic. By the way, you may need to grant permission 以访问 Azure Key Vault。我提供的页面显示了 PowerShell 和 Azure CLI 授予权限的方式,您也可以在 azure 门户上进行(如下截图所示)。