alibaba / lightproxy

💎 Cross platform Web debugging proxy
https://lightproxy.org/
Apache License 2.0
3.12k stars 258 forks source link

使用问题反馈 #245

Open gottayan opened 3 years ago

gottayan commented 3 years ago

1、不能同时使用whistle和debugger 2、不能在代理注入lightproxy=true参数,特别是在app里面入口链接无法修改的情况无法使用。 3、wenire功能无法使用

qq1226685735 commented 3 years ago

同有疑问,为什么只能加参数lightproxy=true才能调试?这样设置的原因是什么?建议改成全部或自定义规则

qq1226685735 commented 3 years ago

不过可以注入这段重定向的代码,也可以调试 var href = window.location.href if(!href.includes('lightproxy=true')){ if(href.includes('?')){ window.location.replace(href + '&lightproxy=true') }else{ window.location.replace(href + '?lightproxy=true') } }