douhuilin1152 2017-09-16 15:52
浏览 93
已采纳

如何在电报机器人中发送空消息?

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.

  • 写回答

2条回答 默认 最新

  • douxi4287 2017-09-16 16:43
    关注

    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".

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?