yeatse / NSURLProtocol-WebKitSupport

Make your WKWebView happy with NSURLProtocol
MIT License
662 stars 126 forks source link

http post body丢失问题 #7

Open DingSoung opened 6 years ago

DingSoung commented 6 years ago
           URLProtocol.wk_register(scheme: "https")
           URLProtocol.wk_register(scheme: "http")
           URLProtocol.registerClass(WebPURLProtocol.self)

后post body丢失你是怎么解决的?

yeatse commented 6 years ago

这个 trick 不适合用来拦截 http 和 https 请求,最好跟服务端定个协议,WebP 图片改成类似 webp://xxx.com/xxx 这样的形式,然后注册名为 webp 的 scheme 来拦截

Lee0820 commented 5 years ago

@Yeatse 感谢,这个提示直接让我越过了body 丢失的问题,感谢

Lee0820 commented 5 years ago

@Yeatse 作者请问下,现在有个这样的问题,链接是https的,我再用这种方式 最好跟服务端定个协议,WebP 图片改成类似 webp://xxx.com/xxx 这样的形式,然后注册名为 webp 的 scheme 来拦截,就拦截不到呢,不知道什么原因

DingSoung commented 5 years ago

@Yeatse 是不是跨域的问题

bryanRRRR commented 5 years ago

POST请求有办法支持嘛?各位大佬