Levi
Levi
实现这个最基础的拦截器`HttpProxyIntercept`里的这个方法就行了: ``` public void afterResponse(Channel clientChannel, Channel proxyChannel, HttpContent httpContent, HttpProxyInterceptPipeline pipeline) ``` --- Just implement this method in the most basic interceptor `HttpProxyIntercept`: ``` public void afterResponse(Channel clientChannel, Channel...
嗯,就是这个意思,然后细节方面你再调下应该就行了 --- Well, that’s what it means, and then you should adjust the details
你抓的应用应该做了ssl pinning
根证书安装了吗
你要不先试试电脑上跑代理,看看行不行,排除下安卓底层库的问题
突然想起来了,你可能需要自己生成一个根证书: 
是只有你app的webview抓不了吗,有正常能抓的吗
I know what you mean, but unfortunately proxyee not support transparent mode currently, it only follow standard HTTP proxy.
Transparent mode has no handshake step, so I think the packet should be entry [here](https://github.com/monkeyWie/proxyee/blob/cddd02ad0d5a00fb152a8839f7356c1b17d62ff4/src/main/java/com/github/monkeywie/proxyee/handler/HttpProxyServerHandler.java#L201) directly, you can add a transparent flag on `HttpProxyServerConfig`, if it set true then skip...
Yes, that's right.