WKWebView ajax请求Cookie丢失

2018-03-09  本文已影响713人  LeeCen
image.png

使用 Charles 抓包(Mac推荐Charles

发现H5里面 ajax请求失败302,这可能Cookie丢失或Cookie不相同了

原因是 WKWebView 请求携带的 Cookie 的 Secure 属性不齐全

在后面拼接完整 Cookie 的 Secure 属性 cookie、 path、domain
Document.cookie - Web APIs | MDN

NSString *jsStringCookie= [NSString stringWithFormat:@"document.cookie='%@=%@; path=%@; domain=%@';", cookie.Name, cookie.Value, cookie.Path, cookie.Domain];
             
NSString *headerStringCookie= [NSString stringWithFormat:@"'%@=%@; path=%@; domain=%@';", cookie.Name, cookie.Value, cookie.Path, cookie.Domain];

WKWebView那些坑- 腾讯Bugly

iOS 中 UIWebView 与 WKWebView、JavaScript 与 OC 交互、Cookie 管理看我就够(中)

Can I set the cookies to be used by a WKWebView?

上一篇下一篇

猜你喜欢

热点阅读