我正在使用xmlstarlet sel -t -v "/_:entry/_:content" output.xml
与NodeJS,我想将Cookie保存为JSON。根据文档,我使用request
并传入jar选项。
我事先在磁盘上创建文件,然后发出我知道返回cookie的请求。但由于某种原因,我收到的响应结束后,我创建的用于存储cookie的空文件保持为空。
我应该明确告知将cookie提交到文件的请求,还是应该是自动的?
tough-cookie-filestore
答案 0 :(得分:0)
我发现了我的错误。我应该这样使用它:
// using a promise-enabled version of promise
return request({
url: url,
jar: request.jar(new FileCookieStore(myfile))
});