使用 HttpClient 时出现未经授权的错误

ign*_*guy 2 c# httpclient basic-authentication

using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;

namespace ConsoleProgram
{
    public class Class1
    {
        private const string URL = "https://sun.domain.com/v1/service/token";
        static void Main(string[] args)
        {
            var handler = new HttpClientHandler();
            handler.Credentials = new System.Net.NetworkCredential("admin@client", "admin");
            HttpClient client = new HttpClient(handler);
            //client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", Convert.ToBase64String(Encoding.ASCII.GetBytes(String.Format("{0}:{1}", "admin", "admin"))));
            //  client.BaseAddress = new Uri(URL);
            // Add an Accept header for JSON format.
            client.DefaultRequestHeaders.Accept.Add(
            new MediaTypeWithQualityHeaderValue("application/json"));
            // List data response.
            HttpResponseMessage response = client.GetAsync(URL).Result;  // Blocking call!
            String res = response.ToString();
            Console.WriteLine(res);
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

即使我传递了正确的凭据,我也收到未经授权的错误。有任何想法吗?

我尝试了几乎所有在 StackOverflow 上发布的答案。

Tod*_*ier 7

对于基本身份验证,您需要在名为“基本”的授权标头中发送凭据,并将 base64 编码的“用户名:密码”作为值。这应该可以完成工作:

var headerVal = Convert.ToBase64String(Encoding.UTF8.GetBytes("admin@client:admin"));
var header = new AuthenticationHeaderValue("Basic", headerVal);
client.DefaultRequestHeaders.Authorization = header;
Run Code Online (Sandbox Code Playgroud)