UIWebView中的请求是否使用sharedHTTPCookieStorage?

发布于 2024-10-06 11:59:06 字数 273 浏览 3 评论 0原文

通过谷歌搜索,我的问题的答案是“是”。但我该如何测试呢?

我尝试检查 webView:shouldStartLoadWithRequest:navigationType: 中的 HTTP 请求标头(即 [request allHTTPHeaderFields]),但没有一个请求具有“Cookie”条目,甚至尽管 cookie 已成功存储在 [NSHTTPCookieStorage sharedHTTPCookieStorage] 中。

From googling a bit, the answer to my question is "yes". But how do I test that?

I tried to inpsect the HTTP request headers (i.e. [request allHTTPHeaderFields]) in webView:shouldStartLoadWithRequest:navigationType:, but none of the request has the "Cookie" entry, even though cookies are successfully stored in [NSHTTPCookieStorage sharedHTTPCookieStorage].

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

煮茶煮酒煮时光 2024-10-13 11:59:06

尝试循环遍历 UIWebView 中的所有 cookie 以验证它们是否存在

NSHTTPCookie *aCookie;
for (aCookie in [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies]) {
   NSLog(@"%@", aCookie);
}

try this to loop through all the cookies in the UIWebView to verify they are there

NSHTTPCookie *aCookie;
for (aCookie in [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies]) {
   NSLog(@"%@", aCookie);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文