6

我有一个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 中的设置。

客户端将按预期工作。

4

3 回答 3

3

这基本上以我的首选语法重申了 OP 和@Anders 已经涵盖的内容......

 var windowsAuthHandler = new HttpClientHandler { UseDefaultCredentials = true };
 var webApiUri = new System.Uri("https://localhost:8080");
 var apiClient = new MyAutoRestClient(webApiUri ,windowsAuthHandler);

如果您正在略读,则 OP 似乎表明这不起作用,实际上它确实起作用。但是,正如 OP 稍后所述,请务必从 IIS 开始,以确保其配置正确

于 2018-05-18T17:17:44.570 回答
0

我使用类似的解决方案来传递 Windows 凭据,并且效果很好。唯一的区别是我使用了它的构造函数重载,ServiceClient它接受一个HttpClientHandler实例,而不是调用InitializeHttpClient()它,它看起来像这样:

public class MyClient : ServiceClient<MyClient>
{
    public MyClient() : base(new HttpClientHandler { UseDefaultCredentials = true }) {}
}

但是,401 消息中“目标主体名称不正确”的部分看起来很可疑。您的问题可能来自您的 AD 配置中的某些问题,而不是 - 配置中的一些问题ServiceClient

于 2018-04-30T12:12:37.033 回答
0

@bkwdesign 是对的

var credentials = new Microsoft.Rest.BasicAuthenticationCredentials();
var handler = new System.Net.Http.HttpClientHandler() { UseDefaultCredentials = true };
var uri = new Uri("http://your-rest-api:8008");
var svc = new WebApplication1Client(uri, credentials, handler);

//WebApplication1Client : ServiceClient<WebApplication1Client>, IWebApplication1Client

这是如何将凭据从 MVC 传递到 WebAPI Windows 身份验证或模拟凭据的方式

也许其他选择:

var handler = new HttpClientHandler() { Credentials = CredentialCache.DefaultCredentials };
var handler = new HttpClientHandler() { Credentials = CredentialCache.DefaultNetworkCredentials };
于 2020-03-29T15:01:53.097 回答