android 如何在ldplayer上更改代理授权

aiazj4mn  于 2023-02-14  发布在  Android
关注(0)|答案(1)|浏览(116)

我有代理“{主机}:{端口}:{用户名}:{密码}"。
我已经运行下面的命令adb,但当我访问互联网,它仍然需要输入用户名,密码。

os.system(f"adb -s {emulator} shell settings put global http_proxy {host}:{port}")
    os.system(f"adb -s {emulator} shell settings put global global_http_proxy_host {host}")
    os.system(f"adb -s {emulator} shell settings put global global_http_proxy_port {port}")
    os.system(f"adb -s {emulator} shell settings put global global_http_proxy_username {username}")
    os.system(f"adb -s {emulator} shell settings put global global_http_proxy_password {password}")

有没有人有办法在ldplayer上使用代理认证?谢谢

crcmnpdw

crcmnpdw1#

使用oxy代理管理器应用程序。易于使用和快速。

相关问题