Teams iframe integration

Jefferson Guiot 26 Reputation points
2022-07-04T15:37:30.39+00:00

Hello,

I would like to embed my webapp in an iframe usable via an app on microsoft teams, downloadable by my clients
Is this possible ? Do I have only to make a manifest with the webapp link or do we have to implement the whole webapp

Thx

Microsoft Teams
Microsoft Teams
A Microsoft customizable chat-based workspace.
9,292 questions
Microsoft Teams Development
Microsoft Teams Development
Microsoft Teams: A Microsoft customizable chat-based workspace.Development: The process of researching, productizing, and refining new or existing technologies.
2,933 questions
0 comments No comments
{count} votes

Accepted answer
  1. Ramin Ahmadi 86 Reputation points
    2022-07-04T18:30:20.69+00:00

    Microsoft Teams Tabs are simple HTML <iframe\> tags that point to domains declared in the app manifest.

    So in your manifest, make the following changes for your configurable or static tab:

    {
    ...,
    "contentUrl": "https://{{PUBLIC_HOSTNAME}}/<yourDefaultTabNameTab>/personal.html",
    "websiteUrl": "https://{{PUBLIC_HOSTNAME}}",
    }

    2 people found this answer helpful.

0 additional answers

Sort by: Most helpful