2016-05-03 12 views

答えて

0

ロジックアプリは、クライアント秘密または証明書+パスワード

以下

のいずれかを使用して、ネイティブ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": "" 
     } 
     }, 
    } 

両方のためのスキーマは、これは ここに文書化され、オブジェクトauthenticatin Azureのスケジューラに似ていますhttps://azure.microsoft.com/en-us/documentation/articles/scheduler-outbound-authentication/#request-body-for-activedirectoryoauth-authentication

関連する問題