curlpp リクエストからレスポンス Cookie を取得するにはどうすればよいですか?
HTTP GET リクエストから PHP セッションを保存したいと考えています。これは私の現在のコードです:
void Grooveshark::Connection::processPHPCookie()
{
std::ostringstream buffer;
gsDebug("Processing PHP cookie...");
try {
request.setOpt<cURLpp::Options::Url>("http://listen.grooveshark.com");
request.setOpt<cURLpp::Options::WriteStream>(&buffer);
request.perform();
// Get the PHP Session cookie here..
} catch (cURLpp::LogicError& exception) {
gsError(exception.what());
} catch (cURLpp::RuntimeError& exception) {
gsError(exception.what());
}
gsDebug("Processing complete...");
}
request
はcURLpp::Easy
インスタンスです。詳細が必要な場合は、ここで私のソースコードを見つけることができます
前もって感謝します。