A client-side utility that allows you to open webexteams:
protocol links from applications that only permit standard https:
links.
Live Demo | Source Code |
Many enterprise applications (including Jira, Confluence, and even Webex itself) restrict the use of custom URL protocols like webexteams://
for security reasons. This makes it impossible to create a direct link to a specific Webex chat space. This forwarder page solves that problem by acting as a secure bridge. You can create a standard https:
link that points to this page, which then uses JavaScript to instantly redirect the user to the correct Webex space, prompting the Webex desktop client to open.
webexteams://
link or just the space
ID as a query parameter.webexteams://im?space=2715dc50-ec59-11ea-a2c3-a73bb0df49ab
https:
link by appending your Webex space link to this page’s URL:
https://austegard.com/web-utilities/webex.html?webexteams://im?space=...
Alternatively, you can provide just the space ID:
https://austegard.com/web-utilities/webex.html?space=...
https:
link in any application. When a user clicks it, they will be taken to this page and immediately redirected to the Webex space.window.location.search
or window.location.hash
to find the Webex space ID. It then reconstructs the webexteams://
URL and sets window.location.href
to trigger the redirect.Created by Oskar Austegard (@oaustegard)
For issues, feature requests, or contributions, please open an issue on GitHub.