清除Libcurl中的cookie文件

发布于 2024-11-04 09:22:22 字数 107 浏览 2 评论 0原文

我正在尝试清除 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

染火枫林 2024-11-11 09:22:23

您无法使用 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".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文