我正在尝试用C#创建一个https客户端。
我有HTTP客户端工作正常,我改变它使用HTTPS。但不幸的是,授权存在问题(服务器使用OAuth 2)。
我的程序向服务器发送请求并获取令牌。但它无法从服务器获取或发送任何数据。
服务器可以和其他客户端一起使用,所以这不是它的错。
这是导致问题的一段代码。我知道,因为当我评论服务器上的授权时,数据被发送(一切都很好)。
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(
"Basic", Convert.ToBase64String(System.Text.ASCIIEncoding.ASCII.GetBytes(
string.Format("Authorization: {0}", token))));
这是整个函数,它应该发送数据:
WebRequestHandler handler = new WebRequestHandler();
X509Certificate certificate = GetMyX509Certificate();
handler.ClientCertificates.Add(certificate);
var client = new HttpClient(handler);
string uri = "https://192.168.0.10:8443/data";
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(
"Basic", Convert.ToBase64String(System.Text.ASCIIEncoding.ASCII.GetBytes(
string.Format("Authorization: {0}", token))));
client.BaseAddress = new Uri(uri);
var parameters = new Dictionary<string, string>();
parameters["name"] = name;
parameters["surname"] = surname;
JavaScriptSerializer serializer = new JavaScriptSerializer();
var json = serializer.Serialize(parameters);
System.Net.ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
var response = client.PostAsync(uri, new StringContent(json, System.Text.Encoding.UTF8, "application/json")).Result;
Console.WriteLine((response.StatusCode.ToString()));
string resultContent = response.Content.ReadAsStringAsync().Result;
Console.WriteLine(resultContent);
我想我在标题中遗漏了一些内容,但在文档中找不到任何有关该内容的信息。 这是一个难题,所以任何建议都会非常感激。
答案 0 :(得分:0)
您不应在"Authorization: "
的参数中包含HTTP标头名称(AuthenticationHeaderValue
)。设置Authorization
属性会将标头添加到请求中。
此外,对于OAuth 2,您可能希望使用"Bearer"
作为方案,而不是使用base64编码token
。
因此,这样的事情应该有效:
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token);