我刚刚开始使用HTTP,我需要连接到服务器。我发现这有用code。所以当我尝试这个时:
RestClient::response r = RestClient::get("http://localhost:8080/services/login?username=admin&password=changemenow");
NSLog(@"%s",r.body.c_str());
RestClient::response rp = RestClient::get("http://localhost:8080/services/logout");
NSLog(@"%s",rp.body.c_str());
我得到的第一个请求是:
{
"loginSuccess" : true,
"sessionId" : "1xmtxh729fepulbfyt8qgf0an",
"serverVersion" : "5.2.2.6"
}
而对于第二个我得到:
{
"errorcode" : 401,
"message" : "Not logged in"
}
我该怎么做才能维持连接?