This is the second article in my "Building a Microsoft Teams Bot" series. In this series, I am planning to write down some interesting things I came across while creating a Microsoft Teams Bot app which is now available on AppSource: https://appsource.microsoft.com/en-us/product/office/WA200002297
Click here to see the previous article in the series: Building a Microsoft Teams Bot: Posting an Adaptive Card carousel as a welcome message
Todays article is around how to create deep links to teams messages from Adaptive cards. This can be useful in scenarios when you want to send users to a specific Teams chat message when they click on an Adaptive Card button:
Deep links to personal chats are in a different format compared to channel messages.
private static string GetMessageTeamsDeepLink(ITurnContext turnContext, string botId) | |
{ | |
var messageId = turnContext.Activity.ReplyToId ?? turnContext.Activity.Id; | |
var channelData = turnContext.Activity.GetChannelData<TeamsChannelData>(); | |
if (turnContext.Activity.Conversation.ConversationType == "personal") | |
{ | |
var userAadObjectId = turnContext.Activity.From.AadObjectId; | |
return $"https://teams.microsoft.com/l/message/19:{userAadObjectId}_{botId}@unq.gbl.spaces/{messageId}?context=%7B%22contextType%22:%22chat%22%7D"; | |
} | |
else if (turnContext.Activity.Conversation.ConversationType == "channel") | |
{ | |
return $"https://teams.microsoft.com/l/message/{channelData.Channel.Id}/{messageId}"; | |
} | |
return string.Empty; | |
} |
{ | |
"type": "AdaptiveCard", | |
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json", | |
"version": "1.3", | |
"body": [ | |
{ | |
"type": "ActionSet", | |
"actions": [ | |
{ | |
"type": "Action.OpenUrl", | |
"title": "Go to message", | |
"url": "https://teams.microsoft.com/l/message/19:14ba23dc1081438fb77da64db402bc27@thread.tacv2/1636213162472" | |
} | |
] | |
} | |
] | |
} |
No comments:
Post a Comment