deep link
6 TopicsProblem 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.9KViews2likes3CommentsDeep Link or Dynamic Link for an apps in Intune portal
I wonder whether if it possible to create a deep link or dynamic link to an application in the Intune portals like Firebase Dynamic Link or other deep link/dynamic link? My scenario is if a user receives an email that contains a link (deep link/dynamic link with some data) when the user clicks the link it will: redirect to an Application in the Intune portal if the user hasn't installed the application once the user installs the application it will pre-populate some data based on the data in the link open the application and pre-populate some data if the user already installs the application it will automatically Basically the same behavior as when a user clicks a link then open an application in the Apple store/Google play store if the user hasn't installed the application. Please suggest if it can be done on Android and iOS both devices.6.8KViews1like4Comments