PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Monday, July 11, 2022

[FIXED] How to send empty message in telegram bot?

 July 11, 2022     keyboard, message, php, telegram-bot     No comments   

Issue

I have this keyboard in my telegram bot:

enter image description here

When i click the right arrow i get this new keyboard:

enter image description here

the code is this:

    $url = $GLOBALS["website"]."/sendMessage?chat_id=".$chatID."&text=''&parse_mode=html&reply_markup=".json_encode($keyboard3);
    file_get_contents($url);

I know that text is required in sendmessage method, but i'm searching a way or workaround to send an empty message.

I've tried with space or similar html entity, but i did not suceed.

There is a way to do this?

Thank you.


Solution

I don't think there is a way to do what you want.

Consider this:

https://api.telegram.org/botYOURTOKEN/sendMessage?chat_id=ID&text=

Since even space is not accepted, there are no other characters that can be encoded to represent "nothingness".



Answered By - andrea
Answer Checked By - Katrina (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing