如何在频道的新消息中提及 user/group?
How to mention a user/group in a new message to a channel?
我检查了这里的 samples/API 参考文献:
- https://msdn.microsoft.com/en-us/microsoft-teams/connectors
- https://dev.outlook.com/Connectors/GetStarted
- https://dev.outlook.com/Connectors/Reference
但找不到如何在频道的新消息中提及某人。
Microsoft Teams 目前不支持程序化@mentions,并且可能不会很快推出。
MS uservoice 门户中有来自社区的 such a wish,但似乎没有其他问题那么火:
抱歉,此问题从未得到答复。此功能是几个月前添加的 - 有称为 addMentionToText (Node.js) 和 AddMentionToText (C#) 的 SDK 方法 - 源和用法示例 here。
还有一个例子here that's actually a bit more helpful. That example bot can be run very quickly on Glitch - repo and instructions are here。
请注意,使用此 API 的挑战之一是您必须拥有要@提及的人的用户 ID,为此您需要团队花名册。如何做到这一点的例子是 here.
我检查了这里的 samples/API 参考文献:
- https://msdn.microsoft.com/en-us/microsoft-teams/connectors
- https://dev.outlook.com/Connectors/GetStarted
- https://dev.outlook.com/Connectors/Reference
但找不到如何在频道的新消息中提及某人。
Microsoft Teams 目前不支持程序化@mentions,并且可能不会很快推出。
MS uservoice 门户中有来自社区的 such a wish,但似乎没有其他问题那么火:
抱歉,此问题从未得到答复。此功能是几个月前添加的 - 有称为 addMentionToText (Node.js) 和 AddMentionToText (C#) 的 SDK 方法 - 源和用法示例 here。
还有一个例子here that's actually a bit more helpful. That example bot can be run very quickly on Glitch - repo and instructions are here。
请注意,使用此 API 的挑战之一是您必须拥有要@提及的人的用户 ID,为此您需要团队花名册。如何做到这一点的例子是 here.