adb连接上设备后, 执行 执行端口转发 adb forward tcp:6789 tcp:888'
就可以了, 把设备的8888端口转发到本机6789, 本机postman之类直接访问 127.0.0.1:6789即可
其他笔记:
- 连接wsa:
adb connect 127.0.0.1:58526
连接安卓模拟器:adb connect emulator-5554
- 安装app
adb -s 127.0.0.1:58526 install "C:\Users\alex\Documents\Tencent Files\239548611\FileRecv\result.apk"
其中 -s xxxx 写不写都行,连接多个设备才需要这个参数 - 进入shell wsa
adb -s 127.0.0.1:58526 shell
安卓模拟器adb -s emulator-5554 shell
- 执行端口转发
adb forward tcp:6789 tcp:888
- 列出设备
adb devices
- shell后查看安卓设备监听端口
netstat -a | grep -E 'LISTEN|udp*'
- shell后查看安卓设备ip
ip addr show
- root安卓模拟器
adb root
- telnet模拟器
telnet emulator-5554 5554
,
会自动生成token'C:\Users\用户名\.emulator_console_auth_token'
授权连接auth yos/aMKKtDaDRfz7
转发端口adb forward tcp:6789 tcp:8888