I'd like to have iOS to open URLs from my domain (e.g. http://martijnthe.nl) with my app whenever the app is installed on the phone, and with Mobile Safari in case it is not.

I read it is possible to create a unique protocol suffix for this and register it in the Info.plist, but Mobile Safari will give an error in case the app is not installed.

What would be a workaround?

One idea:

1) Use http:// URLs that open in any desktop browser and render the service through the browser

2) Check the User-Agent and in case it's Mobile Safari, open a myprotocol:// URL to (attempt) to open the iPhone app and have it open Mobile iTunes to the download of the app in case the attempt fails

Not sure if this will work... suggestions? Thanks!

link|improve this question

53% accept rate
feedback

5 Answers

up vote 44 down vote accepted

I think the least intrusive way of doing this is as follows:

  1. Check if the user-agent is that of an iPhone/iPod Touch
  2. Check for an appInstalled cookie
  3. If the cookie exists and is set to true, set window.location to your-uri:// (or do the redirect server side)
  4. If the cookie doesn't exist, open a "Did you know Your Site Name has an iPhone application?" modal with a "Yep, I've already got it", "Nope, but I'd love to try it", and "Leave me alone" button.
    1. The "Yep" button sets the cookie to true and redirects to your-uri://
    2. The "Nope" button redirects to "http://itunes.com/apps/yourappname" which will open the App Store on the device
    3. The "Leave me alone" button sets the cookie to false and closes the modal

The other option I've played with but found a little clunky was to do the following in Javascript:

setTimeout(function() {
  window.location = "http://itunes.com/apps/yourappname";
}, 25);

// If "custom-uri://" is registered the app will launch immediately and your
// timer won't fire. If it's not set, you'll get an ugly "Cannot Open Page"
// dialogue prior to the App Store application launching
window.location = "custom-uri://";
link|improve this answer
I tried both ideas both obviously work, and the best solution would be to combine them. The dialogue / cookie for first-timers and the timer to catch the case where the app has been deinstalled. (Perhaps trigger a new dialogue: "I see Your App Name has disappeared from your iPhone. Would you like to download it again?") On my own 3GS the alert doesn't show when the timer is shorter than 100msec. I also tried loading the AppStore URL after the app:// URK with two meta refresh tags, but that didn't work. – Martijn Thé Jul 24 '09 at 9:39
5  
Great solution. If your fallback is to another application, it will load IMMEDIATELY without displaying the error. So instead of falling back to itunes.com... use itms://phobos.apple.com/... to avoid the popup error! – jb. Mar 6 '10 at 0:20
I ran this code on my iphone 3g (ios 3.1.3) and the error still pops up. I think safari must be pausing javascript execution while it tries to load the new page. Once I click the ok from the alert that pops up the next page loads. – Ericson578 Aug 16 '11 at 17:38
4  
Problem: When window.location="custom-uri:// succeeds, the fallback timeout is not killed. When the user returns to the browser from your app, the timer is still there and will launch the app store link. This is poor user experience. – JoJo Jan 6 at 20:19
feedback

It's quite possible to do this in JavaScript as long as your fallback is another applink. Building on Nathan's suggestion:

<html>
  <head>
    <meta name="viewport" content="width=device-width" />
  </head>
  <body>

    <h2><a id="applink1" href="fb://profile/116201417">open facebook with fallback to appstore</a></h2>
    <h2><a id="applink2" href="unknown://nowhere">open unknown with fallback to appstore</a></h2>
    <p><i>Only works on iPhone!</i></p>    

  <script type="text/javascript">

// To avoid the "protocol not supported" alert, fail must open another app.
var appstorefail = "itms://itunes.apple.com/us/app/facebook/id284882215?mt=8&uo=6";

function applink(fail){
    return function(){
        var clickedAt = +new Date;
        // During tests on 3g/3gs this timeout fires immediately if less than 500ms.
        setTimeout(function(){
            // To avoid failing on return to MobileSafari, ensure freshness!
            if (+new Date - clickedAt < 2000){
                window.location = fail;
            }
        }, 500);    
    };
}

document.getElementById("applink1").onclick = applink(appstorefail);
document.getElementById("applink2").onclick = applink(appstorefail);

</script>
</body>
</html>

Check out a live demo here.

link|improve this answer
Much better solution, love it! – Lee Armstrong Jan 10 '11 at 8:18
5  
Agree with Lee, this seems like a more straightforward solution - though i still do get the error message from safari if the app does not exist and it redirects to the app store. – Jon Apr 29 '11 at 19:50
1  
Problem: If you don't have the app installed, trying to open the app will pop up an alert saying "cannot open page". Although there is nothing technically wrong, this is a weird message to show to an average user. – JoJo Jan 6 at 21:30
2  
I used this solution for both Android and iOS. I found if I change the timeout value from 500 to 100 I don't get the "Cannot open page" popup dialog in iOS. I also found that the timeout needs to be 50 for Android – Rossini Jan 18 at 14:56
feedback

You can't, as far as I know, make the entire OS understand an http:+domain URL. You can only register new schemes (I use x-darkslide: in my app). If the app is installed, Mobile Safari will launch the app correctly.

However, you would have to handle the case where the app isn't installed with a "Still here? Click this link to download the app from iTunes." in your web page.

link|improve this answer
feedback

Check the User-Agent and in case it's Mobile Safari, open a myprotocol:// URL to (attempt) to open the iPhone app and have it open Mobile iTunes to the download of the app in case the attempt fails

This sounds a reasonable approach to me, but I don't think you'll be able to get it to open mobile itunes as a second resort. I think you'll have to pick one or the other - either redirect to your app or to itunes.

i.e. if you redirect to myprotocol://, and the app isn't on the phone, you won't get a second chance to redirect to itunes.

You could perhaps first redirect to an (iphone optimised) landing page and give the user the option to click through to your app, or to itunes to get the app if they don't have it? But, you'll be relying on the user to do the right thing there. (Edit: though you could set a cookie so that is a first-time thing only?)

link|improve this answer
Thats wrong. If an error is shown that the page cannot be opened (App not installed), JS is still executed. Thats why you can can redirect to another fallback solution then. – Erik Apr 21 '10 at 7:26
feedback

In seeking to fix the problem of pop-up, I discovered that Apple had a way around this concern.

Indeed, when you click on this link, if you installed the application, it is rerouted to it; otherwise, you will be redirected to the webpage, without any pop-up.

link|improve this answer
I dug in pretty deeply into how that link was working, and the best I can come up with is that it is not a JavaScript solution at all. Apple seems to have registered a special URL handler for their app that doesn't require a custom protocol and is instead some matching on a URL string. The link you send redirects immediately with a 303 to here. If you send that link in an email to yourself you can observe that clicking on it will directly bring up the AppStore app if installed – Casey Dec 7 '11 at 14:18
Very interesting. You're right : if i click on it, it brings up the AppStore app if installed. But if you delete some parameters until "holydays", it brings up within Safari. Apple can register special URL scheme... – Titignes Dec 7 '11 at 17:59
feedback

protected by Community Dec 7 '11 at 14:43

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.