从网站中创建一个新的公共团队

发布于 2025-02-13 07:18:46 字数 451 浏览 0 评论 0原文

我们知道,可以通过网站上的链接进行以下网站上的Microsoft团队对话:

< a href =“ msteams:/l/l/chat/0/

> 为我们的组织中的所有成员创建一个新的公共团队,并以简单的链接是不可能的。

要 首先有一个按钮

< button>启动此问题的MS团队中的新讨论</button>

,一旦用户掌握了此按钮,我们就会通过此按钮替换它:

< a; a href =“ msteams:/link to-to-to-new-public-Team>加入MS团队中此问题的讨论</a>

是否可以理解我们要实现的目标?

是否有MS Team-API方法可以实现此行为?

从外部创建一个新的公共团队

We know that it's possible to start a Microsoft Teams conversation via a link on a website like the following:

<a href="MSTeams:/l/chat/0/[email protected]>Start direct MS Teams Chat</a>

Now we're searching for a way to create a new public team for all members of our organization within MS-Teams from the outside. With a simple link that won't be possible as we need to know the Teams link to this public team.

So from UX side we want to have first a button

<button>Start new discussion in MS Teams for this issue</button>

And once a user has klicked this button we replace it by this button:

<a href="MSTeams:/link-to-the-new-public-team>Join the discussion for this issue in MS Teams</a>

Is it understandable what we are trying to achieve?

Are there any MS Teams-API methods to achieve this behavior?

Create a new public team within Microsoft Teams from the outside

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

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

发布评论

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

评论(1

匿名的好友 2025-02-20 07:18:47

链接是不可能的,就像您可以创建新的聊天一样。

但是您可以使用 Microsoft Graph API

POST https://graph.microsoft.com/v1.0/teams
Content-Type: application/json

{
  "[email protected]": "https://graph.microsoft.com/v1.0/teamsTemplates('standard')",
  "displayName": "My Sample Team",
  "description": "My Sample Team’s Description"
}

This is not possible with a link, like you can create a new chat.

But you can create a team using the Microsoft Graph API.

POST https://graph.microsoft.com/v1.0/teams
Content-Type: application/json

{
  "[email protected]": "https://graph.microsoft.com/v1.0/teamsTemplates('standard')",
  "displayName": "My Sample Team",
  "description": "My Sample Team’s Description"
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文