I am building a HTML5 based mobile web app for iPhone. I need to check whether user has specific application that I suggest. I heard that each iPhone application has unique URL scheme to detect their app indentity.
Therefore, I've read this article to get an idea.
Is it possible to register a http+domain-based URL Scheme for iPhone apps, like YouTube and Maps?
However, this is not perfect answer to make what I am trying to make.
here is what might happen
- User clicks a recommendation app on mobile web browser.
- Check with application iTunes URL and URL scheme.
If the user has the installed application, it returns 'installed' ==> In this case, the screen returns back to mobile browser.
If the user does not have the installed application, it returns 'uninstalled' ==> In this case, the screen moves to App Store.
I am running mobile web app with PHP language.
Thank you.