【问题标题】:Is there a provision for AAD authentication in Logic App's http connector?Logic App 的 http 连接器中是否提供 AAD 身份验证?
【发布时间】:2016-05-03 08:54:16
【问题描述】:

Logic App 的 http 连接器中是否提供 AAD 身份验证? 如果是这样,身份验证对象会是什么样子?

或者我是否必须单独获取 AAD 令牌,然后在 http 连接器的标头部分中填充相同的令牌?

【问题讨论】:

    标签: azure-logic-apps


    【解决方案1】:

    逻辑应用本机支持 ActiveDirectoryOAuth 身份验证,使用客户端密码或证书 + 密码

    以下是两者的架构

        "simpleAction": {
          "type": "http",
          "inputs": {
            "uri": "https://www.endpoint.com/certificate",
            "method": "GET",
            "authentication": {
              "type": "ActiveDirectoryOAuth",
              "authority": "",
              "tenant": "",
              "audience": "",
              "clientId": "",
              "pfx": "",
              "password": ""
            }
          },
        },
        "simpleAction2": {
          "type": "http",
          "inputs": {
            "uri": "https://www.endpoint.com/secret",
            "method": "GET",
            "authentication": {
              "type": "ActiveDirectoryOAuth",
              "authority": "",
              "tenant": "",
              "audience": "",
              "clientId": "",
              "secret": ""
            }
          },
        }
    

    这类似于 Azure 调度程序身份验证对象,在此处记录 https://azure.microsoft.com/en-us/documentation/articles/scheduler-outbound-authentication/#request-body-for-activedirectoryoauth-authentication

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2017-03-20
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2018-10-31
      • 2018-12-17
      • 1970-01-01
      相关资源
      最近更新 更多