Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions msteams-platform/messaging-extensions/how-to/link-unfurling.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
---
title: Add Link Unfurling to App Manifest
author: vikasalmal
Comment thread
v-nikitach marked this conversation as resolved.
description: Learn to add link unfurling with Developer Portal and messaging extension in a Teams app with app manifest or manually. Update web service code to handle invoke.
ms.localizationpriority: medium
ms.topic: conceptual
ms.author: vikasalmal
ms.owner: slamba
ms.date: 11/06/2024
ms.date: 04/23/2026
---
# Link unfurling

Expand Down Expand Up @@ -121,7 +123,7 @@ The following card types are supported:
* [Hero card](~/task-modules-and-cards/cards/cards-reference.md#hero-card)
* [Connector card for Microsoft 365 Groups](../../task-modules-and-cards/cards/cards-reference.md#connector-card-for-microsoft-365-groups)

For more information, see [Action type invoke](~/task-modules-and-cards/cards/cards-actions.md#action-type-invoke).
For more information, see [Action.Execute](~/task-modules-and-cards/cards/cards-actions.md#actionexecute).
Comment thread
v-nikitach marked this conversation as resolved.

The following code is an example of the `invoke` request:

Expand Down Expand Up @@ -364,7 +366,7 @@ To get your app ready for zero install link unfurling, follow these steps:
}
},
"value":{
"url":"https://test.test.com/test"
"url":"https://example.com/test"
},
"locale":"en-US",
"localTimezone":"America/Los_Angeles"
Expand Down Expand Up @@ -535,4 +537,4 @@ The following JSON payload example for `suggestedActions` property:
* [Message extensions](../what-are-messaging-extensions.md)
* [Adaptive Cards](../../task-modules-and-cards/what-are-cards.md#adaptive-cards)
* [Tabs link unfurling and Stageview](../../tabs/tabs-link-unfurling.md)
* [Bot activity handlers](../../bots/bot-basics.md)
* [Bot activity handlers](../../bots/bot-basics.md)
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ adaptive_card_response = {
## See also

* [Cards and dialogs](../../cards-and-task-modules.md)
* [Adaptive Card actions in Teams](~/task-modules-and-cards/cards/cards-actions.md#adaptive-cards-actions)
* [Adaptive Card actions in Teams](~/task-modules-and-cards/cards/cards-actions.md#card-actions)
* [How bots work](/azure/bot-service/bot-builder-basics?view=azure-bot-service-4.0&preserve-view=true)
* [Work with Universal Actions for Adaptive Cards](Work-with-universal-actions-for-adaptive-cards.md)
* [Form completion feedback](../cards-actions.md#form-completion-feedback)
* [Server handlers](../cards-actions.md#server-handlers)
Original file line number Diff line number Diff line change
Expand Up @@ -265,4 +265,4 @@ The following code provides an example of Adaptive Cards sent as response of `ad
* [Cards and dialogs](../../cards-and-task-modules.md)
* [Work with Universal Actions for Adaptive Cards](Work-with-universal-actions-for-adaptive-cards.md)
* [User Specific Views](User-Specific-Views.md)
* [Form completion feedback](../cards-actions.md#form-completion-feedback)
* [Server handlers](../cards-actions.md#server-handlers)
Original file line number Diff line number Diff line change
Expand Up @@ -270,4 +270,4 @@ The following list provides card design guidelines for User Specific Views:
* [Work with Universal Actions for Adaptive Cards](Work-with-Universal-Actions-for-Adaptive-Cards.md)
* [Up to date cards](Up-To-Date-Views.md)
* [Cards](../../what-are-cards.md)
* [Form completion feedback](../cards-actions.md#form-completion-feedback)
* [Server handlers](../cards-actions.md#server-handlers)
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ For more information, see [backward compatibility on Teams](/adaptive-cards/auth
## See also

* [Cards and dialogs](../../cards-and-task-modules.md)
* [Adaptive Card actions in Teams](~/task-modules-and-cards/cards/cards-actions.md#adaptive-cards-actions)
* [Adaptive Card actions in Teams](~/task-modules-and-cards/cards/cards-actions.md#card-actions)
* [Sequential Workflows](~/task-modules-and-cards/cards/universal-actions-for-adaptive-cards/sequential-workflows.md)
* [Up to date cards](~/task-modules-and-cards/cards/universal-actions-for-adaptive-cards/up-to-date-views.md)
* [Form completion feedback](../cards-actions.md#form-completion-feedback)
* [Server handlers](../cards-actions.md#server-handlers)
Loading