清除Libcurl中的cookie文件
我正在尝试清除 Libcurl(版本 7.21.6)中所有存储的 cookie,但是 似乎没有什么真正有效的。
我应该使用什么命令? 我正在使用 C 绑定版本。
谢谢。
I'm trying to clear all stored cookies in Libcurl (version 7.21.6) but
nothing really seems to work.
What command should I use?
I'm using the C-binding version.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法使用 libcurl“清除”cookie 文件(在磁盘上)。只需使用普通系统函数(例如 unlink())将其从文件系统中删除,或者使用 truncate() 将其清零即可。
您可以使用 CURLOPT_COOKIELIST "ALL" 清除内存中 libcurl 知道的所有 cookie。
You can't "clear" a cookie file (on disk) with libcurl. Just remove it from the file system with a normal system function such as unlink() or zero it with truncate().
You can clear all cookies libcurl knows about in memory with CURLOPT_COOKIELIST "ALL".