Mobile app version of vmapp.org
Login or Join
Ogunnowo487

: Chrome ignores link to external protocol When I click on a button, the href is for the external protocol mayApp://. Chrome ignores this. I want it to show it somehow (address bar is preferable).

@Ogunnowo487

Posted in: #GoogleChrome #Links #Url #WebDevelopment

When I click on a button, the href is for the external protocol mayApp://. Chrome ignores this. I want it to show it somehow (address bar is preferable).

I use web automation to verify this link.

I have tried to change chrome advanced settings but it didn't help. Do I have to write a chrome extension to fetch this link?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Ogunnowo487

1 Comments

Sorted by latest first Latest Oldest Best

 

@Nimeshi995

I assuming that mayApp: may be a typo where mayApp is meant to be myApp. Please forgive my ignorance in this area. However, neither of these seem to be recognized by standards.

You can find most if not all recognized URI schemes here:
en.wikipedia.org/wiki/URI_scheme#Official_IANA-registered_schemes
To quote:


A URI scheme is the top level of the uniform resource identifier (URI)
naming structure in computer networking. All URIs and absolute URI
references are formed with a scheme name, followed by a colon
character (":"), and the remainder of the URI called (in the outdated
RFCs 1738 and 2396, but not the current STD 66/RFC 3986) the
scheme-specific part. The syntax and semantics of the scheme-specific
part are left largely to the specifications governing individual
schemes, subject to certain constraints such as reserved characters
and how to "escape" them.

URI schemes are frequently and incorrectly referred to as "protocols",
or specifically as URI protocols or URL protocols, since most were
originally designed to be used with a particular protocol, and often
have the same name. The http scheme, for instance, is generally used
for interacting with web resources using HyperText Transfer Protocol.
Today, URIs with that scheme are also used for other purposes, such as
RDF resource identifiers and XML namespaces, that are not related to
the protocol. Furthermore, some URI schemes are not associated with
any specific protocol (e.g. "file") and many others do not use the
name of a protocol as their prefix (e.g. "news").


You will find in this list a URI scheme for app:.

It is likely that the browser you are using does not recognize the URI scheme you are trying to reference and therefore does not support it.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme