Find iOS appNames to launch via javascript -
i've searched , found open facebook is:
window.location = "fb://"; /* works fine */
instead of:
window.location = "facebook://"; /* doesn't work */
the problem is:
i need open app "facebook", don't know how find appname url scheme fb://
"facebook"...
i've tried lot of name combinations, without success.
i glad if give me hint achieve this.
as palpatim said, can @ online registry, such this one.
otherwise, there no way scheme programatically in javascript. can find hand if open .ipa
file, in payload/*appname.app/info.plist
. you'll see list of urls this:
this picture example respond product://
.
be aware opening .ipa file might considered reverse engineering, on own apps.
Comments
Post a Comment