我有一个Microsoft.Rest.ServiceClient
生成的autorest
. 我想访问使用 Windows 身份验证和基本身份验证保护的 REST API。
目标是使用 Windows 身份验证。我尝试如下:
var handler = new HttpClientHandler
{
UseDefaultCredentials = true,
};
this.InitializeHttpClient(handler);
这不起作用,我得到:
System.Net.Http.HttpRequestException: An error occurred while sending the request.
---> System.Net.WebException: The remote server returned an error: (401) Unauthorized.
---> System.ComponentModel.Win32Exception: The target principal name is incorrect
当我使用基本身份验证时,它可以工作。
this.Credentials = new BasicAuthenticationCredentials
{
UserName = Configuration.User,
Password = Configuration.Password
};
这个设置ServiceClient
是在构造函数中完成的
MyClient : Microsoft.Rest.ServiceClient
我需要向客户端添加什么才能使 Windows 身份验证正常工作?
编辑:
看起来问题出在服务器端。IIS 中的设置。
客户端将按预期工作。