How to add Signup link in description of Custom Teams app Manifest Json

i need to add an login link in description to a MS Teams App as part of the information display before the app is installed. Documentation does mention a how to add link but how can I put it on the app's manifest/info like the image below?

So as per in screenshot i want to add link in description

Upvotes: 1

Views: 337

Answers (1)

Prasad-MSFT
Prasad-MSFT

Reputation: 1029

In the manifest in description section if you want to add hyperlink, you can do as below format:

    "description": {
    "short": "Sample Decription",
    "full": "FullDecsLink [FullLink](https://adaptivecards.io/designer/)"
  },

Attaching screenshot for reference: enter image description here

Upvotes: 2

Related Questions