//Basic Authorization Setting
http_client_config config;
credentials creds(L"name", L"password");
config.set_credentials(creds);
http_client client(U("http://severip/"), config);
// create header
http_request req(methods::GET);
//// Add base64 result to header
req.headers().add(L"Authorization", L"Basic bmFtZTpwYXNzd29yZA");
req.set_request_uri(L"/_cat/master");
pplx::task<http_response> responses = client.request(req);
pplx::task<web::json::value> jvalue = responses.get().extract_json();
web::json::value v = jvalue.get();
utility::string_t jsonval = v.serialize();
wcout << jsonval << endl;
//with base64 encoding.
//bmFtZTpwYXNzd29yZA = name:password
我正在尝试通过cpprestsdk(又名卡萨布兰卡(设置凭据。
而且我收到了401错误,该错误无法使用户满意,这意味着密码错误。
任何建议将不胜感激。
尝试使用 curl 命令快速验证用户/密码。
curl -X PUT --basic -u {user}:{password} http://severip/