在一个应用程序中,我需要访问微软团队中的制表符。是否有API来获取现有选项卡的标题和选项卡链接?
发布于 2017-09-26 09:59:27
恐怕还没有这方面的API。它在我们的Microsoft的待办事项中,但它还没有出现。不幸的是,我没有一个坚实的ETA什么时候将支持它。
发布于 2018-09-28 04:57:31
API刚刚发布,签出了文档
GET /beta/teams/{id}/channels/{id}/tabs
应该允许您访问这种结果。
{
"value": [
{
"id": "794f0e4e-4d10-4bb5-9079-3a465a629eff",
"name": "My Contoso Tab - updated",
"teamsAppId": "06805b9e-77e3-4b93-ac81-525eb87513b8",
"configuration": {
"entityId": "2DCA2E6C7A10415CAF6B8AB6661B3154",
"contentUrl": "https://www.contoso.com/Orders/2DCA2E6C7A10415CAF6B8AB6661B3154/tabView",
"websiteUrl": "https://www.contoso.com/Orders/2DCA2E6C7A10415CAF6B8AB6661B3154",
"removeUrl": "https://www.contoso.com/Orders/2DCA2E6C7A10415CAF6B8AB6661B3154/uninstallTab"
},
"sortOrderIndex": 20,
"webUrl": "https://teams.microsoft.com/l/channel/19%3ac2e36757ee744c569e70b385e6dd79b6%40thread.skype/tab%3a%3afd736d46-51ed-4c0b-9b23-e67ca354bb24?label=my%20%contoso%to%tab
},
{
"id": "b5d5f001-0471-49a5-aac4-04ef96683be0",
"name": "My Trello Tab",
"teamsAppId": "23134c6b-5e4b-439c-8f70-3ded1df20805",
"configuration": null,
"sortOrderIndex": 21,
"webUrl": "https://teams.microsoft.com/l/channel/19%3ac2e36757ee744c569e70b385e6dd79b6%40thread.skype/tab%3a%3a3709b35c-a0ba-467c-8001-0f66895fb9d3?label=My%20Trello%Tab
}
]
}
https://stackoverflow.com/questions/46403017
复制