【发布时间】:2023-02-13 22:28:16
【问题描述】:
我有代理“{host}:{port}:{username}:{password}”。
我已经在命令 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 上使用代理身份验证?谢谢
【问题讨论】: