UIWebView中的请求是否使用sharedHTTPCookieStorage?
通过谷歌搜索,我的问题的答案是“是”。但我该如何测试呢?
我尝试检查 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试循环遍历 UIWebView 中的所有 cookie 以验证它们是否存在
try this to loop through all the cookies in the UIWebView to verify they are there