摘要认证在libcurl 7.43.0中不起作用

时间:2015-11-06 15:59:46

标签: c linux curl libcurl

我使用以下代码C对我的http服务器进行摘要式身份验证。

curl_easy_setopt(curl, CURLOPT_USERNAME, user_id);
curl_easy_setopt(curl, CURLOPT_PASSWORD, passwd);
curl_easy_setopt(curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC|CURLAUTH_DIGEST);

我的http客户端(libcurl)接收到http 401并且不进行摘要式身份验证。 它适用于旧版本。

我还使用以下命令重试:

root@OpenWrt:~# curl --data {"red":"00"} --digest -u "admin:admin" "http://192.168.1.200:8
080/openacs/acs"
<html><head><title>JBossWeb/2.0.1.GA - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 401 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>This request requires HTTP authentication ().</u></p><HR size="1" noshade="noshade"><h3>JBossWeb/2.0.1.GA</h3></body></html>root@OpenWrt:~# 

并且它不起作用。

我缺少什么?

0 个答案:

没有答案