Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I already know how to launch an app from safari, but is it possible to check if the app is installed before launching? I'm thinking to launch the app store if the app isn't currently installed on the iPhone.

share|improve this question

1 Answer

up vote 20 down vote accepted

It's not possible to check if app is installed from a web page. You could do it inside an other app by checking if your url scheme can be opened using UIApplication's -canOpenURL: method, but there is no javascript equivalent to this.

However, you can use the following workaround:

<script language="javascript">
    var timeout;
    function open_appstore() {
        window.location='http://itunes.com/';
    }

    function try_to_open_app() {
        timeout = setTimeout('open_appstore()', 300);
    }
</script>

<a onClick="javascript:try_to_open_app();" href="yourappurl:">App name</a>

This code will set a timeout on the link that will call the open_appstore function if this timeout ends. Since your link is pointed at the app's custom url, Safari will try to open that link and if it can, it will open the app and stop the timer, so AppStore link will not be opened.

If the app link can't be opened, when timer runs out it will display an error popup saying it can't open the page (can't get rid of that), but it will immediately go to AppStore and dismiss that error.

share|improve this answer
1  
I tried this. However, if the "yourappurl:" successfully launches your app, then when the user returns to Safari the timeout will eventually fire anyway and send the user to itunes. – George Jul 12 '12 at 21:41
@George In what version of iOS and on what device is this happening? – Filip Radelic Jul 13 '12 at 8:24
Seconded - this shows the alert even if the app opens. – Bryan Irace Dec 21 '12 at 22:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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