protocol-handler

simplest cross-browser check if protocol handler is registered

蹲街弑〆低调 提交于 2019-11-26 12:59:20
问题 When user clicks link with custom protocol (like myapp://superlink ) I need either launch an app or allow user to download and run configuration app I am looking for cross-browser way to check if custom protocol is registered I\'ve tried to determine this by checking user agent server-side (for IE) [HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\User Agent\\Post Platform] \"myapp\"=\"\" sends `....NET CLR 3.0.30729; .NET4.0C; .NET4.0E;

Open Internet Explorer from Chrome using a protocol handler (ie:url)

旧街凉风 提交于 2019-11-26 12:19:34
问题 I\'ve followed these steps and it doesn\'t work correctly for me. Custom protocol handler in chrome Basically, I don\'t have a custom app. I just want to create an handler to open IE with a specific URL. Here are my reg: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\\Software\\Classes\\ie] \"URL Protocol\"=\"\\\"\\\"\" @=\"\\\"URL:IE Protocol\\\"\" [HKEY_CURRENT_USER\\Software\\Classes\\ie\\DefaultIcon] @=\"\\\"explorer.exe,1\\\"\" [HKEY_CURRENT_USER\\Software\\Classes\\ie\\shell]

How can I add a custom url handler on Windows. Like iTunes itms://

自古美人都是妖i 提交于 2019-11-26 10:32:01
问题 I would like telnet://blah to open putty and not the native windows telnet client. I don\'t even know what this \'feature\' is called under windows so I\'m having no luck find any information about it. Thanks in advance, Jan 回答1: If it's simple, you can do it via the command line: ftype telnet # view current binding ftype telnet=\path\to\putty.exe %1 Otherwise you'll need to use the registry as previously posted. 回答2: It's a registry keys that provides the custom URI handlers. Here's an

How to map a custom protocol to an application on the Mac?

好久不见. 提交于 2019-11-26 06:30:41
问题 I\'m trying to register a custom protocol to an application on the Mac, i.e: User clicks on link with \"abcdef://some/url/here\" An installed application is launched with the above string passed as the first param I\'ve done this successfully on Windows using the information from this question: how do I create my own URL protocol? (e.g. so://...) I would prefer to find something that is browser-independent, in other words at the OS level. I would also like to automate this registration

How do I create my own URL protocol? (e.g. so://…) [closed]

断了今生、忘了曾经 提交于 2019-11-25 22:28:12
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I have seen: http://www... ftp://blah.blah... file://blah.blah... unreal://blah.blah... mailto://blah.blah... What is that first section where you see http and the like called? Can I register my own? 回答1: The portion with the HTTP:// , FTP:// , etc are called URI Schemes You can register your own through the