How can I access my localhost from my Android device?

前端 未结 30 2266
面向向阳花
面向向阳花 2020-11-21 05:53

I\'m able to access my laptop web server using the Android emulator, I\'m using 10.0.2.2:portno works well.

But when I connect my real Android phone, th

30条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-21 06:33

    You may have your web server listening on your loopback interface and not on your network interface. Major signs of this are:

    • Hits on 127.0.0.1 and localhost (from localhost or Android emulator) work
    • Hits on 192.168.xxx.xxx do not work, whether from localhost, LAN, or WAN

    I talk more about diagnosing this and fixing this in an answer here.

提交回复
热议问题