【发布时间】:2016-03-22 23:07:15
【问题描述】:
我正在开发一个类似投票的 Bot,我想将选项显示为按钮。 有些选项包含 10 个或更多单词。 当我将该文本作为按钮输入时,中间的单词转换为点。 IE: “我们有能力接收来自星星的信息和夜风的歌声。”
当我把它作为一个按钮时,它会显示如下: “我们有能力......夜风”。
有什么解决办法吗?
【问题讨论】:
标签: php button telegram-bot
我正在开发一个类似投票的 Bot,我想将选项显示为按钮。 有些选项包含 10 个或更多单词。 当我将该文本作为按钮输入时,中间的单词转换为点。 IE: “我们有能力接收来自星星的信息和夜风的歌声。”
当我把它作为一个按钮时,它会显示如下: “我们有能力......夜风”。
有什么解决办法吗?
【问题讨论】:
标签: php button telegram-bot
我建议你;使用命令代替回复键盘。 您可以轻松地在选择的开头添加斜杠和数字,以便用户单击它:
/1 We have the capacity to receive messages from the stars and the songs of the night winds.
/2 We have not the capacity to receive messages from the stars and the songs of the night winds.
/3 test test test
/4 example example example
/1、/2、/3 和 /4 将转换为链接并转换为可点击的文本。
【讨论】: