Shay Well-Known Member Licensed User Longtime User Jun 16, 2013 #1 Hi Is there a way to intercept Whatapp messages such we can do with SMS?
Erel B4X founder Staff member Licensed User Longtime User Jun 17, 2013 #2 No. These messages are sent directly to Whatsapp application. Upvote 0
Shay Well-Known Member Licensed User Longtime User Jun 17, 2013 #3 No workaround way to at least get the message? Upvote 0
thedesolatesoul Expert Licensed User Longtime User Jun 17, 2013 #4 They use their custom protocol to push their messages, I dont think you can intercept them. Most apps that read their messages try to read them from the Whatsapp SQLite db. Its more of a hack than proper programming, they have no external API. Upvote 0
They use their custom protocol to push their messages, I dont think you can intercept them. Most apps that read their messages try to read them from the Whatsapp SQLite db. Its more of a hack than proper programming, they have no external API.
imgsimonebiliato Well-Known Member Licensed User Longtime User Sep 22, 2013 #6 So, is it possible to OPEN whatapp application, from the b4a app? Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Sep 23, 2013 #7 Yes. You can start any app you like by sending an intent. You will need to first find the app package name. You can use PackageManager for that. Upvote 0
Yes. You can start any app you like by sending an intent. You will need to first find the app package name. You can use PackageManager for that.
imgsimonebiliato Well-Known Member Licensed User Longtime User Sep 23, 2013 #8 Erel said: Yes. You can start any app you like by sending an intent. You will need to first find the app package name. You can use PackageManager for that. Click to expand... An example, please? Upvote 0
Erel said: Yes. You can start any app you like by sending an intent. You will need to first find the app package name. You can use PackageManager for that. Click to expand... An example, please?
Erel B4X founder Staff member Licensed User Longtime User Sep 24, 2013 #9 Call PackageManager.GetInstalledPackages. Find whatsapp package name and then call PackageManager.GetApplicationIntent. Upvote 0
Call PackageManager.GetInstalledPackages. Find whatsapp package name and then call PackageManager.GetApplicationIntent.
imgsimonebiliato Well-Known Member Licensed User Longtime User Sep 25, 2013 #10 Erel said: Call PackageManager.GetInstalledPackages. Find whatsapp package name and then call PackageManager.GetApplicationIntent. Click to expand... Thanks Erel. Is it also possible to set the recipient of the whatapp message? Upvote 0
Erel said: Call PackageManager.GetInstalledPackages. Find whatsapp package name and then call PackageManager.GetApplicationIntent. Click to expand... Thanks Erel. Is it also possible to set the recipient of the whatapp message?