美文网首页
WKWebView ajax请求Cookie丢失

WKWebView ajax请求Cookie丢失

作者: LeeCen | 来源:发表于2018-03-09 22:12 被阅读713次
    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 其他问题可以参考以下文章

    WKWebView那些坑- 腾讯Bugly

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

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

    相关文章

      网友评论

          本文标题:WKWebView ajax请求Cookie丢失

          本文链接:https://www.haomeiwen.com/subject/sxcmfftx.html