how to send hashtag character with my text in http request via telegram bot?

6.6k Views Asked by At

I use this format to send text messages to a special group via my Bot in Telegram , but I don't know how to send hashtag character in my text ?

https://api.telegram.org/bot/sendMessage?chat_id

3

There are 3 best solutions below

4
MarcoBuster On

Use percent encoding.

For example: https://api.telegram.org/bot<token>/sendMessage?chat_id=12345678&text=This%20is%20an%20%23hashtag

0
Herossandro On

If you are using php for your bot, you can use this in your script

 "https://api.telegram.org/bot/sendMessage?chat_id=xxxxxxxx&text=".urlencode($text)
0
Maysam Razzaghi On