MS Teams #227
Replies: 7 comments 1 reply
-
Sorry, I'm not a user of MS Teams myself, so I won't be able to help you here. |
Beta Was this translation helpful? Give feedback.
-
Hello, There is several things :
which need to be converted into : ie these rewrites :
and this handler :
|
Beta Was this translation helpful? Give feedback.
-
I have success with a very simple handler:
|
Beta Was this translation helpful? Give feedback.
-
not working on my side, like there is still the double slash issue. which Teams version do you have? and do you have any example of a full link? by the way, your handler match only one type of teams links, but there are the webcast, the files, the channel ones at minima. |
Beta Was this translation helpful? Give feedback.
-
Teams version 1.4.00.11161, but this has worked for quite some time over many updates. Indeed I have only one use case, and it is for joining scheduled events. I’m in a big corporate IT setting, and created this to handle the “join” links that appear in calendar invites that sometimes aren’t recognized by Teams to trigger a nice join button (and before Outlook even tried. |
Beta Was this translation helpful? Give feedback.
-
I'm on Teams version 1.5.00.31156 and macOS Ventura 13.0.1 and the other solutions in this thread have not worked for me. I came up with the following, which does work for launching meetings for me: module.exports = {
defaultBrowser: "Safari",
rewrite: [{
match: ({ url }) => url.host === "teams.microsoft.com",
url({ url }) {
// Build the URL string manually so we get the required single "/" between "msteams:" and "l/meetup-join…"
return "msteams:" + decodeURI(url.pathname) + "?" + url.search
}
}],
handlers: [{
match: ({ url }) => url.protocol === "msteams",
browser: "Microsoft Teams"
}]
} |
Beta Was this translation helpful? Give feedback.
-
This convo is old, but I found it today. And between the discussion and some experiments, I found something that seems to work for me. Maybe someone else will find it useful, too. On a mac with Sonomo 14.6.1 and Finicky v3.4.0 and MS Teams 24277.3502.3161.3007, the following handler is working for me with Teams-generated links to messages, channels, and meetings:
However, the links I'm seeing in meeting invites from Teams look different than the original poster's -- they begin with |
Beta Was this translation helpful? Give feedback.
-
Hi,
Perhaps a(nother) newbie question but the MS Teams handler does not work as expected. Finicky does open MS Teams but it does not go to the corresponding url (I am clicking a link that should take me to a file). Instead MS Teams stays where I last left it (file or team or chat window). Do you have any tip for me?
Beta Was this translation helpful? Give feedback.
All reactions