Questions tagged [uri-scheme]

A Uniform Resource Identifier (URI) scheme is the top level of the uniform resource identifier (URI) naming structure. URLs are a type of URI.

An app: URL is a that can be used by a packaged application to address resources within its container (e.g., a .zip file).

Examples

foo://username:password@example.com:8042/over/there/index.dtb?type=animal&name=narwhal#nose
  \_/   \_______________/ \_________/ \__/            \___/ \_/ \______________________/ \__/
   |           |               |       |                |    |            |                |
   |       userinfo         hostname  port              |    |          query          fragment
   |    \________________________________/\_____________|____|/ \__/        \__/
 scheme                 |                          |    |    |    |          |
  name              authority                      |    |    |    |          |
   |                                             path   |    |    interpretable as keys
 \_______________________________________/              |    |
   |                  |                                 |    |
   |                host                                |    |
   |    \_______________________________________________|____|/       \____/     \_____/
   |                         |                          |    |          |           |
 scheme              hierarchical part                  |    |    interpretable as values
  name                                                  |    |
   |            path               interpretable as filename |
   |   ___________|____________                              |
  / \ /                        \                             |
  urn:example:animal:ferret:nose               interpretable as extension

                path
         _________|________
 scheme /                  \
  name  userinfo  hostname       query
  _|__   ___|__   ____|____   _____|_____
 /    \ /      \ /         \ /           \
 mailto:username@example.com?subject=Topic

Further:

58 questions
1
vote
1 answer

More precise URI scheme

PROBLEM I've got multiple schemes that guide user to different parts of application. Problem is that since all of these schemes starts the same, the user have to pick where he want to go from Android application chooser(or w/e that bottom box with…
JakubW
  • 1,101
  • 1
  • 20
  • 37
1
vote
1 answer

How to navigate from browser to application in Citrix

I am currently developing an integration between a web app and a windows application, where everything works fine on standard setups. However, introducing Citrix to the equation complicates everything quite a bit. The current solution At the moment…
Johny Skovdal
  • 2,038
  • 1
  • 20
  • 36
1
vote
2 answers

Custom URI scheme not working?

So I've made a shortcut for testing purposes, and here's the target: "C:\Program Files\uvnc bvba\UltraVNC\vncviewer.exe" -connect 111.222.333.444:1 -notoolbar -nostatus -quickoption 3 As you can see I'm trying to pass the ip argument as %1 however…
Bren
  • 605
  • 4
  • 15
1
vote
1 answer

How to cryptographically verify web page requisites?

How to cryptographically verify web page requisites in HTML? For example, if I have some external resource like an image, a style sheet or (most importantly) a script on a (potentially untrusted) content delivery network, is it possible to force the…
jotik
  • 17,044
  • 13
  • 58
  • 123
1
vote
1 answer

Error from selenium IDE: The URI scheme corresponds to an unknown protocol handler

I am quite new to selenium IDE. I try to read from an XML file. I saw the error on this site but it was not answered (It was stated that the error was with the xml file used, but that seems not to be the case) The complete error I got is: [error]…
Calimero
  • 27
  • 1
  • 2
1
vote
2 answers

What is the Uri Scheme to open LinkedIn and Twitter App from an Windows Phone 8.1 App?

I am developing a Windows Phone 8.1 app. I need to open a person's profile in the LinkedIn and Twitter App (which is already installed in the phone) from my own app. To achieve this functionality I know I need the URI Scheme of the above two apps. I…
Utsav Dawn
  • 7,896
  • 2
  • 29
  • 44
1
vote
1 answer

What is the `file` URI scheme in Puppet?

The documentation for the source attribute for the file resource type says: The available URI schemes are puppet and file. puppet URIs will ... It then explains the puppet URI scheme, but doesn't say anything about the file URI scheme. What is it?…
jameshfisher
  • 34,029
  • 31
  • 121
  • 167
1
vote
1 answer

msLaunchUri not available in IE11

I'm doing some fanciful work of launching a particular program (created by us) from a website. Currently, I'm still in the research phase, so I'm open to very outlandish suggestions. Basically, our app will open through a "myapp://something" link;…
Katana314
  • 8,429
  • 2
  • 28
  • 36
0
votes
2 answers

Firebase Dynamic link: How to get the URI scheme from the dynamic link that gets generated?

My requirement is to get the URI scheme out of the dynamic link URL that has been generated. Even in the firebase sample app, its the deep link url that gets returned and not the URI scheme. For eg: Our dynamic link url is this ->…
0
votes
1 answer

news URL scheme format

I've come across an unusual URL scheme format, namely news. What is this scheme used for and what are its pros? Im reading an old book and it could be that this is not used anymore. Example: news:rec.arts startrek
potato
  • 4,479
  • 7
  • 42
  • 99
0
votes
2 answers

Yammer ios app's uri scheme for opening a user profile

I am currently integrating our cordova app with social networking apps such as twitter, linkedin and yammer. The first two apps provide uri scheme in directly opening the user's profile. E.g. twitter://user?screen_name=SREEN_NAME and…
0
votes
0 answers

Launching Android/iOS apps from browser

I have read a lot of similar questions but none seem to answer directly my issue. I am working on a project and want to implement a way to launch 3rd party apps from within a web app. I have found SOME URISchemes and got these launching fine on iOS…
0
votes
2 answers

Android Notification open currently running app instead of creating a new process?

Im receiving a push notification with a custom Uri scheme: myapp://main In my onReceive i create a notification: public void createNotification(Context context, String title, String message, String summary, Uri uri) { Notification.Builder…
Arbitur
  • 38,684
  • 22
  • 91
  • 128
0
votes
0 answers

Custom Url scheme handling Android

I want to implement forgot password feature in my app. I get custom uri link from server. My link is clickable I use custom email app, not gmail app. DevelopmentProject://forgotPassword?auth=authCode Manifest Activity Definition
jacekchronowski
  • 127
  • 3
  • 8
0
votes
1 answer

Cannot execute cmd.exe using custom URI scheme on IE

I'm trying to implement a custom URI scheme using HKCU (HKEY_CURRENT_USER), but I am unable to make it work on Internet Explorer. I've created a key under HKCU\Software\Classes that just executes cmd.exe. It works in Chrome but when I try to call my…
lucasdc
  • 1,032
  • 2
  • 20
  • 42