iPhone 上的隧道 Web 请求
我想知道是否可以隧道网络请求,当然还有使用/实现什么。
我已经编写了 NSInputStream 和 NSOutputStream 的子类来发送&通过我的自定义代理服务器接收数据,该服务器对于套接字连接非常有效。
我尝试实现 UIWebView 和 NSURLRequest 的委托,但无法捕获从 UIWebView 发出的所有 HTTP 请求。
先感谢您。
I want to know if it is possible to tunnel web requests, and of course what to use/implement.
I have already written subclasses of NSInputStream and NSOutputStream to send & receive data via my custom proxy server, which is working wonderfully for socket connections.
I have tried to implement the delegates of UIWebView and NSURLRequest, but I was unable to capture all the HTTP requests made from the UIWebView.
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用类别来捕获所有相关的方法调用(下面的模板)。但是要小心龙,并确保在执行此操作之前考虑使用系统代理路由。
UIWebView+PrivateProxy.h
UIWebView+PrivateProxy.m
当然,您可能需要重写更多方法,例如 reload、stopLoading 等。
You could try using category to catch all the relevant method calls (template below). However beware dragons and make sure that you consider using the system proxy route before doing this.
UIWebView+PrivateProxy.h
UIWebView+PrivateProxy.m
Off course you'll probably have to override more methods e.g. reload, stopLoading, etc.