Replies: 4 comments 2 replies
-
I can't help you there, not a user of Webex. Maybe someone else can. |
Beta Was this translation helpful? Give feedback.
-
I've been wondering the same thing. I ran this: ❯ mdls '/Applications/Cisco Webex Meetings.app' | grep kMDItemCF
kMDItemCFBundleIdentifier = "com.cisco.webexmeetingsapp" and tried adding this to my config: {
match: /(.+\.)?webex\.com\/(.+?)\/j\.php/,
browser: "com.cisco.webexmeetingsapp"
}, but I get a dialog (from Webex) saying "This feature is not supported in current version. Please upgrade to latest version." I did find this information about iOS. Running For reference, the Webex API returns something like this for the meeting URL: <meet:meetingLink>https://sqdemo.dmz.webex.com/sqdemo/j.php?MTID=m0cdefe09626ba0bec956cdf9088bff55</meet:meetingLink> |
Beta Was this translation helpful? Give feedback.
-
This works for me rewrite: [{
match: ({url}) => url.host.endsWith(".webex.com") && url.pathname.endsWith("/j.php"),
url({url}) {
return {
protocol: "wbx",
pathname: url.pathname.slice(0, url.pathname.length-6)
}
}
}],
handlers: [{
match: ({ url }) => ( url.protocol == "wbx" ),
browser: "com.webex.meetingmanager"
}] |
Beta Was this translation helpful? Give feedback.
-
I get this in Firefox, does this help? |
Beta Was this translation helpful? Give feedback.
-
How to open the link directly for Cisco Webex without opening the browser like Zoom?
Beta Was this translation helpful? Give feedback.
All reactions