deep link
5 TopicsLink to wiki page fails if not existing member
If I use "Get link to team" and give this to a non-member, they will see an option to join the team when they click it. https://teams.microsoft.com/l/team/<blahblahblah>/conversations?groupId=<groupid>&tenantId=<tenantid> If I use the "Copy Link" option for a wiki page and give this to a non-member, it opens teams but doesn't take them anywhere at all. I would like the user to see the option to join the team and then take them to the page I linked to. https://teams.microsoft.com/l/entity/com.microsoft.teamspace.tab.wiki/tab::<code>?context=<blahblahblah>&tenantId=<tenantid>1.2KViews0likes2CommentsProblem when trying to join a meeting created using the MS Graph API via desktop application
We have an application that creates meetings using the MS Graph API with the onlineMeeting method. We have been using this method for over 5 months and a short time ago we noticed a bug. When trying to join one of these meetings through the desktop application (with deep link) the screen stopped in "connecting" and the users are unable to access the meeting. However, when trying to access the same meeting through the link on the web (browser) you normally access it. Below are examples of the API we consume: API onlineMeeting POST https://graph.microsoft.com/v1.0/me/onlineMeetings Content-Type: application/json { "startDateTime":"2019-07-12T14:30:34.2444915-07:00", "endDateTime":"2019-07-12T15:00:34.2464912-07:00", "subject":"Teste Meeting", "participants": { "organizer": { "identity": { "user": { "id": "oid of user teams", }, }, }, }, } And here's how we use it on sdk Pernille-Eskebo/teams-js: const joinWebUrl = https://teams.microsoft.com/l/meetup-join/19%3ameeting_Y2UxYmExYTQtYTAzNC00M2RhLWFiYmMtYmQ4ODgyZjY1YjI3%40thread.v2/0?context=%7b%22Tid%22%3a%2242b15616-327f-44b1-93a4-c2ebfe032fc7%22%2c%22Oid%22%3a%2296a51331-be23-4600-a8a6-7ac9df1b27d3%22%7d const joinUrl = https://teams.microsoft.com/l/meetup-join/19:meeting_Y2UxYmExYTQtYTAzNC00M2RhLWFiYmMtYmQ4ODgyZjY1YjI3@thread.v2/0 microsoftTeams.initialize(); microsoftTeams.getContext((context => { if (context.hostClientType === "web") { window.open(joinWebUrl, "_blank") return; } const joinUrl = encodeURI(joinUrl); microsoftTeams.executeDeepLink(joinUrl); })); Is anyone having the same problem or can they help us with solutions to work around it? Thanks,1.9KViews2likes3CommentsInitiate a link to a call in teams
Is there a way to initiate a deep link to a call just as in chat : https://teams.microsoft.com/l/call/0/0 I am trying to add a button to adaptive card that initiates a call between 2 users on Microsoft Teams. I tried callto: [email address] but the link shows me : " Due to an internal error, this web page could not be loaded. We recommend that you close this page. " even though if I type the link directly to search bar in chrome, it redirects to starting a call in teams. but clicking on the ActionOpenURL button gives me the prev error. So I have 2 questions for now: is there a possible way to initiate a call link between 2 users and if not, how can I solve the callto problem?4.1KViews0likes0Commentscreate a teams which consume existing web application
Hi all, I am starting using teams app develpement platform. I went trhough all the tutos in order to create an app which consume and join content of an existing content in my organization. I tried deeplinks but they allow open the application in the browser. The goal is to open the business application in teams application without using external browser Any one has a tutorial to do so Regards2.5KViews0likes3Comments