使用AuthenticationContext&带有应用程序代理的ActiveDirectoryClient?

时间:2016-04-22 20:14:24

标签: azure azure-active-directory adal azure-ad-graph-api

使用Azure Active Directory Graph Client API,如何配置底层HttpClient以使用HttpClientHander,我可以在其中定义经过身份验证的应用程序代理?

var proxy = new WebProxy(...);
proxy.Credentials = ...;
var handler = new HttpClientHandler { Proxy = proxy, UseProxy = true};
var auth = new AuthenticationContext(...);
var client = new ActiveDirectoryClient(...);

或者,我可以不在代理服务器后面使用Graph Client吗?

由于

1 个答案:

答案 0 :(得分:0)

有点晚但我遇到了同样的问题。 使用app.config中的以下代码节省了我的一天!

 <system.net>
    <defaultProxy useDefaultCredentials="true" />
  </system.net>