custom-protocol

URL schemes (Protocol handler) programming for Windows?

妖精的绣舞 提交于 2019-12-02 09:10:43
This page explains how to make a Mac application to handle custom URL schemes. How can I do the same thing with PC? To register an application as a URL Protocol Handler, you simply create registry entries telling windows what you want to do. http://msdn.microsoft.com/en-us/library/aa767914.aspx DO you want to write a pluggable protocol handler for Windows Shell and Internet Explorer? If so, check out documentation for URLMon. 来源: https://stackoverflow.com/questions/5287879/url-schemes-protocol-handler-programming-for-windows

Open app and pass parameters with deep linking using Electron (macOS)

99封情书 提交于 2019-11-30 06:43:23
I want to open app and pass parameters with deep linking using Electron (macOS). Project 'electron-deep-linking-mac-win' is on GitHub . Edited package.json , following ‘electron-builder’ quick-setup-guide to produce mac installer: { "name": "electron-deep-linking-osx", "version": "1.0.0", "description": "A minimal Electron application with Deep Linking (OSX)", "main": "main.js", "scripts": { "start": "electron .", "pack": "build --dir", "dist": "build" }, "repository": "https://github.com/oikonomopo/electron-deep-linking-osx", "keywords": [ "Electron", "osx", "deep-linking" ], "author":

Valid characters for URI schemes?

喜欢而已 提交于 2019-11-29 02:58:58
I was thinking about Registering an Application to a URL Protocol and I'd like to know, what characters are allowed in a scheme? Some examples: h323 (has numbers) h323:[<user>@]<host>[:<port>][;<parameters>] z39.50r (has a . as well) z39.50r://<host>[:<port>]/<database>?<docid>[;esn=<elementset>][;rs=<recordsyntax>] paparazzi:http (has a : ) paparazzi:http:[//<host>[:[<port>][<transport>]]/ So, what characters can I fancy using? Can we have... @:TwitterUser #:HashTag $:CapitalStock ?:ID-10T ...etc., as desired, or characters in the scheme are restricted by standard? According to RFC 2396 ,

Custom protocol in linux?

余生长醉 提交于 2019-11-28 20:37:48
I am attempting to port one of my hobby project to linux. Preferrably to Mono since it is written in C#. But I am looking into Python as well. One of the feature of the application is that it needs to associate with a custom protocol so the application is invoked when the user clicks links like this on the app's website: myapp://module/action A custom protocol like this , this and this . How can that be done in linux/unix systems? Can I associate a system-wide handler like in Windows? or does it need to be browser-dependent? Can't find anything on Google. And I am utterly clueless at linux

Custom protocol in linux?

守給你的承諾、 提交于 2019-11-27 20:47:11
问题 I am attempting to port one of my hobby project to linux. Preferrably to Mono since it is written in C#. But I am looking into Python as well. One of the feature of the application is that it needs to associate with a custom protocol so the application is invoked when the user clicks links like this on the app's website: myapp://module/action A custom protocol like this, this and this. How can that be done in linux/unix systems? Can I associate a system-wide handler like in Windows? or does

Valid characters for URI schemes?

孤人 提交于 2019-11-27 17:14:51
问题 I was thinking about Registering an Application to a URL Protocol and I'd like to know, what characters are allowed in a scheme? Some examples: h323 (has numbers) h323:[<user>@]<host>[:<port>][;<parameters>] z39.50r (has a . as well) z39.50r://<host>[:<port>]/<database>?<docid>[;esn=<elementset>][;rs=<recordsyntax>] paparazzi:http (has a : ) paparazzi:http:[//<host>[:[<port>][<transport>]]/ So, what characters can I fancy using? Can we have... @:TwitterUser #:HashTag $:CapitalStock ?:ID-10T .

Open app and pass parameters with deep linking using Electron (macOS)

南笙酒味 提交于 2019-11-27 13:15:06
问题 I want to open app and pass parameters with deep linking using Electron (macOS). Project 'electron-deep-linking-mac-win' is on GitHub. Edited package.json , following ‘electron-builder’ quick-setup-guide to produce mac installer: { "name": "electron-deep-linking-osx", "version": "1.0.0", "description": "A minimal Electron application with Deep Linking (OSX)", "main": "main.js", "scripts": { "start": "electron .", "pack": "build --dir", "dist": "build" }, "repository": "https://github.com

Custom protocol handler in chrome

試著忘記壹切 提交于 2019-11-26 01:57:48
问题 How do i set up a custom protocol handler in chrome? Something like: myprotocol://testfile I would need this to send a request to http://example.com?query=testfile, then send the httpresponse to my extension. 回答1: The following method registers an application to a URI Scheme. So, you can use mycustproto: in your HTML code to trigger a local application. It works on a Google Chrome Version 51.0.2704.79 m (64-bit). I mainly used this method for printing document silently without the print