skip to Main Content

Does anyone try on Botman studio 2.0 with Ubuntu server 16.0? I tried it for telegram chatbot but it didn’t work.

I can download the botman studio and driver without any error.

When I try to use php artisan serve, I can see Laravel development server started: http://127.0.0.1:8000 but accessing this local URL gives 404 error.

I also tried to follow the steps on this link-

https://botman.io/2.0/driver-telegram

Everything is installed and configured without any error yet it does not work.

Please check the screen capture below.

Screenshot

2

Answers


  1. You are editing the code by FTP.

    I can guess your code is on remote server instead of local server.

    And 127.0.0.1 is for local.

    Try to use the IP of remote server instead of 127.0.0.1 for correct access.

    Just like what you do when using FTP

    The IP address 127.0.0.1 is a special-purpose IPv4 address called localhost or loopback address. 
    
    All computers use this address as their own but it doesn't let them communicate with other devices like a real IP address does.
    
    Login or Signup to reply.
  2. Try using something like ngrok to get a public URL, that would solve your issue.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search