Is there any way to check if a URL scheme is currently registered on the phone... with javascript?

link|improve this question
feedback

3 Answers

up vote 1 down vote accepted

No, not from a webpage.

link|improve this answer
As far as I know, there's no way to do it from native code, either. – Brent Royal-Gordon Mar 9 '09 at 21:20
I thought I recalled a way that apps could check this but I'm probably wrong. – Andrew Grant Mar 9 '09 at 21:32
1  
Thanks for the quick answer. As far as from native code, it is possible via openUrl: to check, so I've read... not tested – jackb Mar 10 '09 at 17:34
6  
@Brent Royal-Gordon: Nope. A native iPhone app can check by calling canOpenURL:. – diwup Mar 17 '11 at 5:52
1  
There's a way from a web page: stackoverflow.com/questions/1108693/… – amok May 23 '11 at 21:06
feedback

Not seamlessly. But there is a way similar to checking if a pop-up was blocked or not.

When you try a URL scheme which is not supported, Safari will warn the user that it doesn't know what to do with it and stay on the same page.

So if you gave your app-call some time to activate, say 300 ms, and then do something else to respond to the non-existence of the scheme.

It's not the prettiest but it works:

function startIThrown(){
  document.location = 'ithrown://restart';
  setTimeout(function(){
    if(confirm('You do not seem to have iThrown installed, do you want to go download it now?')){
      document.location = 'http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=293049283&mt=8&uo=6';
    }
  }, 300);
}

<a href="#" onclick="startIThrown()">Restart iThrown</a>
link|improve this answer
nice workaround :) – William Niu Oct 20 '10 at 7:01
It was worth a try, but indeed this is kinda a nasty solution. That function gets called even if the URL scheme goes through when you come back to the page. So the user gets an alert popup no matter what. Either 1 or 2, depending on whether his device support the scheme. – samvermette Feb 21 '11 at 13:44
3  
@samvermette There is a semi-complicated workaround. If the url scheme works, then have your app send a confirmation to your server. Then when you come back to the app, have it ping the server to see if the app was opened successfully. Complicated, but feasible. – Amir Jun 1 '11 at 21:54
feedback

Here is a solution that does not show the popup when you come back from the app, it assumes you've been gone longer than 400 ms:

function startiThrown() {
    document.location = appurl;
    var time = (new Date()).getTime();
    setTimeout(function(){
        var now = (new Date()).getTime();

        if((now-time)<400) {
            if(confirm('You do not seem to have iThrown installed, do you want to go download it now?')){
            document.location = 'http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=293049283&mt=8&uo=6';
            }
         }
    }, 300);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown