摄影。如何在没有声音的情况下发送消息?

发布于 2025-02-07 07:16:37 字数 129 浏览 4 评论 0原文

我可以无声音发送消息。 bot可以使用拟合不发音发送消息吗?

I can send message without sound. Can bot send message without sound using Aiogram?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

罗罗贝儿 2025-02-14 07:16:37

是的,AIOGRAM支持disable_notification选项。

例如,在上回复 [docs] on /start>/start

@dp.message_handlers(commands=['start'])
async def welcome(message: types.Message):
    await message.reply(text="No sound!", disable_notification=True)

Yes, Aiogram supports the disable_notification option.

For example, on a reply[docs] on /start:

@dp.message_handlers(commands=['start'])
async def welcome(message: types.Message):
    await message.reply(text="No sound!", disable_notification=True)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文