PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → WDM - Facebook
WDM - Facebook
Iniciado por guest, 02,ago. 2016 19:43 - 2 respuestas
Publicado el 02,agosto 2016 - 19:43
Hi All

Anyone know how to launch the mobile Facebook App from your own app and pass the page it must open on? Is it even possible?

Cheers
André
Publicado el 03,agosto 2016 - 13:29
Hi André,

Create a URI and shellexecute() it like this;

myFB is string = "facebook://facebook.com/profile-name/" ShellExecute(myFB)
If that doesn't work, then you'll need to implement the appropriate native function for each platform you're targeting and execute that code. On android this is creating a new intent.

Cheers!
ken
Publicado el 04,agosto 2016 - 09:20
Thanks Ken - will give it a shot.