Custom URI Scheme and Skype links
Asked Answered
E

3

15

I registered my own URL scheme.

https://msdn.microsoft.com/en-us/library/aa767914.aspx

how do I create my own URL protocol? (e.g. so://...)

Link example: oce://10000

IE, firefox, windows explorer handle it fine. Id 10000 is opened correctly in my app.

Is it possible make this links clickable in Skype? I already find this unanswered support ticket http://community.skype.com/t5/Windows-archive/Custom-URI-scheme-handlers/td-p/3627869

Eke answered 16/12, 2015 at 15:30 Comment(1)
Doesn't seems like MS are going to allow custom schemes. All I can suggest, use http protocol links (like http://oce/10000) and catch them with simple http webserver, embedded in app...Frond
S
3

You can build a redirect page as suggested here: http://www.developerstalk.net/building-a-redirect-page.aspx

Sedentary answered 25/12, 2015 at 15:4 Comment(0)
C
2

Maybe the easiest way to do this is simple redirect.

Use .htaccess and 301 redirect to desired location. That's the most easiest way. Then just let the server deal with everything.

Calamite answered 7/1, 2016 at 15:51 Comment(0)
H
1

Ideally, an application need to launch/execute URIs it doesn't support or recognize with the OS shell. Skype may be ignoring custom URIs as a security precaution. They don't want to launch unknown applications.

Hinkley answered 8/1, 2016 at 10:3 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.