如何在 Telegram 中打开游戏时禁用聊天选择窗口?

问题描述 投票:0回答:1

我通过

sendGame
方法发送游戏:

Telegram::sendGame([
    'chat_id' => $chatId,
    'game_short_name' => 'game'
]);

当玩家打开游戏时,底部会出现一个窗口,其中包含聊天选项,玩家可以在其中共享游戏。

问题是,如何禁用这个窗口?

enter image description here

我知道可以使用其他方法发送游戏,但我对

sendGame
方法感兴趣。

bots telegram telegram-bot php-telegram-bot telegram-api
1个回答
0
投票

不幸的是,telegram API 没有为 sendGame 指定任何只会阻止此弹出窗口的内容。不过,“protect_content”方法似乎确实有一些希望,因为如果不允许共享,那么拉起共享窗口就没有多大意义。我想阻止共享可能不是您想要的行为,但 sendGame 方法似乎没有任何限制性较小的替代方案。

https://core.telegram.org/bots/api#sendgame

© www.soinside.com 2019 - 2024. All rights reserved.