简体   繁体   English

有什么方法可以知道用户在团队中使用的是哪个版本的自定义选项卡应用程序?

[英]Is there any way to know which version of custom tab app user is using in teams?

We have a custom tab app installed in teams.我们在团队中安装了一个自定义选项卡应用程序。 Recently we've updated the manifest file where we've put the version as 2.1.0.最近我们更新了清单文件,我们将版本设置为 2.1.0。 Now my question is if there are any ways to know which version of the app the user is using(are they using the latest version or the old version.)现在我的问题是是否有任何方法可以知道用户正在使用哪个版本的应用程序(他们使用的是最新版本还是旧版本。)

We have Graph API to List apps installed for user and Get installed app for user .我们有图表 API 来列出为用户安装的应用程序和为用户获取安装的应用程序

Use below Graph API to Get the names and other details of apps installed for the user.使用下图 API 获取为用户安装的应用程序的名称和其他详细信息。 It includes the version as well.它还包括版本。

GET https://graph.microsoft.com/v1.0/users/{user-id | user-principal-name}/teamwork/installedApps?$expand=teamsAppDefinition

Use below Graph API to Get the name and other details of the app installed for the user使用下面的图表 API 获取为用户安装的应用程序的名称和其他详细信息

GET https://graph.microsoft.com/v1.0/users/{user-id | user-principal-name}/teamwork/installedApps/{app-installation-id}=?$expand=teamsAppDefinition

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 从自定义团队应用程序选项卡将文件上传到团队 onedrive - Uploading a file to the teams onedrive from custom teams app tab 如何知道 web 应用程序可在浏览器或团队自定义应用程序上访问 - How to know that web app is access on browser or from teams custom app 如何在团队选项卡应用程序中使通话音频静音并使用户静音 - How to mute the call audio and mute the user in teams tab app 有没有办法在使用图表 api 创建团队选项卡时开始对话 - Is there a way to start conversation when teams tab is created using graph api 通过 Graph API 或任何其他方式以编程方式将自定义团队模板添加到团队管理中心 - Add a custom teams template to teams admin center by Graph API or any other way by programmatically MS Teams 选项卡应用程序登录在 IOS Teams 应用程序上不起作用 - MS Teams tab app login is not working on IOS Teams App 是否可以使用 Graph API 将 Microsoft Teams 应用程序分配给用户? - is it possible to assign a Microsoft Teams App to a user using the Graph API? 如果未捕获安装事件,是否有任何方法可以获取用户 ID/对话参考以主动向团队中的用户发送消息 - Is there any way to get user id/conversation reference to proactively message user on teams if installation event wasnt captured 团队 Web 和桌面应用程序中的团队自定义应用程序身份验证弹出问题 - Teams Custom App Authentication popup issue in teams web and desktop application 有什么方法可以使用 GRAPH API 获取 Microsoft Teams 会议的录音 url 和时间表 - Is there any way to get the recording url and timeline of Microsoft Teams meeting using GRAPH API's
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM