Is there any API or method for receiving Whatsapp chat messages inside your application

Is there any API provided by whatsapp that allows other apps to retrieve chat messages from the official whatsapp app, like google / facebook does.

Is there any method that can export user chat messages. I read about some methods requiring decryption of the database file created by whatsapp, is this the only way?

+3
source share
1 answer

There is no way provided by whatsapp. Only backups are encrypted if you access /data/data/com.whatsapp/databases/msgstore.db on your devices, it’s just a SQLite database that you can access directly through the Android Java application or push it from the device and access it using any other language on the computer.

To access the file, you must run it, but there is no need to decrypt the database if you want to avoid this particular problem by accepting a real database instead of a backup file.

Hello,

+3
source

Source: https://habr.com/ru/post/1627978/


All Articles