Bot Api

Vorelo bots is the service that help you to create and mange your programs


to create a vorelo bot you need to download vorelo bot library and using this functions.

Functions
  • text

  • this function using to send text message to Users and inline service

    how to use?

  • PHP
  • bot('text',[
    'message'=>"your bot message", 'chat_id'=>"$chat_id"
    ])



  • file

  • this function using to send file message to Users and groups

    how to use?

  • PHP
  • bot('file',[
    'chat_id'=>"$chat_id",
    'file_url'=>"File_URL",
    'file_name'=>"File_Name"
    ])



  • photo

  • this function using to send Photos message to Users and groups and channels

    how to use?

  • PHP
  • bot('photo',[
    'chat_id'=>"$chat_id",
    'photo_url'=>"File_Name"
    ])