I have installed django server and it can be accessible as below
http://localhost:8000/get-sms/ http://127.0.0.1:8000/get-sms/
suppose My i
To add @Depado 's answer you may need to add your LAN IP address to ALLOWED_HOSTS in the settings.py along with localhost. it would look like,
ALLOWED_HOSTS
settings.py
localhost
ALLOWED_HOSTS = ["localhost", "192.168.8.160"]