I've searched and found that to open Facebook it is:
window.location = "fb://"; /* It works fine */
Instead of:
window.location = "facebook://"; /* It doesn't work */
The problem is:
I need to open an app like "facebook", but I don't know how to find the appName URL Scheme like fb://
is for "Facebook"...
I've tried a lot of name combinations, but without success.
I would be glad if you could give me some hint to achieve this.