Android OpenURL (ALL)

Hi, i develop android games and i need some open url codes.

URL to open with google play app:
https://play.google.com/store/apps/details?id=PACKAGENAME
Application.OpenURL (“market://details?id=PACKAGE NAME”);
WORKS GREAT :slight_smile:

URL to open with google play app:
https://play.google.com/store/apps/developer?id=DEVELOPERNAME
Application.OpenURL (“market://search?q=DEVELOPERNAME”);
WORKS BUT IT SHOWS ALL APPS ABOUT DEVELOPER NAME KEYWORDS, :wink:
IF YOU HAVE A BETTER SOLUTION PLEASE SHARE

URL to open with facebook app:
Redirecting...
Application.OpenURL(“fb://profile/PAGENAME ID”);
WORKS GREAT :slight_smile:

URL to open with twitter app:
x.com
Application.OpenURL (“twitter:///user?screen_name=unity3d”);
DOESN’T WORK, :frowning:
IF YOU HAVE A SOLUTION PLEASE SHARE

THANKS FOR ANSWERS.

Anyone?

I’ve always used the following for Twitter, never had a problem with it (assuming the app is installed).

Application.OpenURL("twitter://user?screen_name=unity3d");
1 Like