url-scheme

Firefox for Android does not launch app when link is clicked

橙三吉。 提交于 2019-11-29 01:48:27
问题 Firefox does not fire intents for clicked links the way it should. Therefore one cannot launch their app by clicking a link in Firefox (which is possible in Chrome and other browsers). Edit : Please keep in mind that this is a post from 2013. The desired behavior is the following: On my website I have a link, that when clicked should launch my Android app. If the app is not installed, preferably its page in Google Play should be opened to download it. Method The way I implement it is with an

Is there a “map:” URI prefix to launch map application? (like mailto: or tel:)

一个人想着一个人 提交于 2019-11-29 01:20:33
Is there such prefix for launching map application on phones, <a href="map:21st,High Street, London">Toto's home</a> like can do <a href="mailto:toto@gmail.com">Toto's mail</a> Andrew Leach geo: is an officially-recognised URI scheme, and maps: may be implemented in some clients. https://en.wikipedia.org/wiki/Geo_URI_scheme In each plantform: Apple Documentation Example: <a href="http://maps.apple.com/?ll=12.34567,8.90123"> Android: Documentation Example: <a href="geo:40.726966,-74.006076"> Windows Phone: Documentation Example: <a href="bingmaps:?cp=40.726966~-74.006076"> Both of the previous

WhatsApp url scheme for iPhone app

混江龙づ霸主 提交于 2019-11-29 01:00:23
问题 We are developing an iPhone app and planning to integrate Whatsapp. Is there a way to enable click to call / message from the iPhone app? Skype allows this by following: <a href="skype:skypehandle?call"> Skype </a> Is there an equivalent for Whatsapp ? 回答1: currently Whatsapp doesn't have a registered URL scheme. You can check if you favourite apps support them by inspecting the contents of the apps info.plist. I'm sure there are windows equivalents but I use a mac, so have a free app called

Open iOS app from URL AND Pass Parameters

我只是一个虾纸丫 提交于 2019-11-28 22:56:02
A link should open the app. I've got that to work. I just want to know how to pass a parameter. Let's say the url is "addappt://?code=abc". When a view controller pops up, a code field should have populated text - the letters after the equals to sign. I've got part of this to work. I use the following (in app delegate.m) : NSArray *elements = [url.query componentsSeparatedByString:@"="]; NSString *key = [[elements objectAtIndex:0] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; val = [[elements objectAtIndex:1] stringByReplacingPercentEscapesUsingEncoding

Send a link to whatsapp group directly from browser (or from app)

余生颓废 提交于 2019-11-28 21:12:40
问题 I want to enable users to share a URL+ text with a WhatsApp group. I want this to work both from iPhones and Androids. However my app is in a browser (it's a website). I'm currently looking into 2 options, but both have issues: 1) The first potential solution - sharing directly from the browser. I checked out WhatsApp's URL schema and used the following URL to share through my app: "whatsapp://send?text=Hello%2C%20World!" However there were several problems with this approach: It seems to

How to open ios app using url?

回眸只為那壹抹淺笑 提交于 2019-11-28 21:12:01
问题 I want to open my ios app using URL schemes. I am able to open app using this. But I want if app is not installed then app store should be opened where user can download app. Is this possible? How can I do that? EDIT Explaining question step wise: I have a mail in my inbox with a url. I click on URL then i. If app is installed in phone, app will launch. ii. Otherwise app store will be opened to download app. Thank 回答1: I handled it via my server side code: if ((navigator.userAgent.match(

Can I launch one app from other app on iPhone

瘦欲@ 提交于 2019-11-28 18:48:58
I want to create app which have to launch another app and run some features in last. I mean my app A call app B and run in B some method. Can I do this? I know that I want to use URL scheme, but can I run some method in another app? Thanks! Yes you can achieve this using custom URL Schemes. See Communicating with Other Apps . App B will need to register a custom URL Scheme which App A uses to launch B and pass it commands. The following code fragment illustrates how one app can request the services of another app. “todolist” in this example is a hypothetical custom scheme registered by App B.

URL identifier and URL scheme

帅比萌擦擦* 提交于 2019-11-28 18:39:53
In iOS you can set up URL scheme so other apps can launch you or pass data to you. What's the URL Identifier for? It doesn't seem to be used anywhere other than when you specify URL Schemes. Also, what happen when there is duplicate URL schemes on the phone? According to Apple documentation they don't give much info about the identifier and why it is needed or where it is used. They only say that it should be unique: A string containing the abstract name of the URL scheme. To ensure uniqueness, it is recommended that you specify a reverse-DNS style of identifier, for example, com.acme.myscheme

Multiple apps with the same URL Scheme - iOS

江枫思渺然 提交于 2019-11-28 17:47:23
So for my new app I'm having a URL scheme so that people can launch my app from another app or from a website... "myapp://" ... So what happens if there is another app in the AppStore that has the same URL scheme as mine? Or if someone tries to steal my URL Scheme? rmaddy If two apps register the same custom URL scheme, it is undefined which app will actually be launched. One will be launched but there is no way to know. Here's a real kicker. If you have two apps on your device with the same URL scheme, and you delete the one that actually gets launched, the other one will not get launched by

Web link to specific whatsapp contact

匆匆过客 提交于 2019-11-28 15:22:49
I'd like to place a link on a webpage which opens a whatsapp chat with a certain whatsapp contact. In other words: I want a "contact me by whatsapp" link to go next to the page's "Contact us my facebook/twitter/google+/etc" links. Something like: href="whatsapp:contact=015555555555@s.whatsapp.com&message="I'd like to chat with you" Rafael Araújo I've tried many approaches and I have a winner (see Test 3), here is the result of each one: (I think the Test 3 will also work for you because if the person visiting your site doesn't have you on their contact list, it's the only option that will