Namrata
Namrata

Reputation: 167

Is it possible to read WhatsApp messages programmatically?

I want to read WhatsApp message in my application, is it possible? Is there any API available to read WhatsApp messages? Is it possible to send messages from another application and message is received in WhatsApp application account?

Upvotes: 12

Views: 20602

Answers (1)

Shanto George
Shanto George

Reputation: 994

Whatsapp store all messages in an encrypted database (pyCrypt) which is very easy to decipher using Python.

You can fetch this database easily on Android, iPhone, Blackberry and dump it into html file. Here(http://geeknizer.com/read-extract-whatsapp-messages-android-iphone-blackberry/) are complete instructions: Read, Extract WhatsApp Messages backup on Android, iPhone, Blackberry

Disclaimer: I researched and wrote this extensive guide.

Upvotes: 3

Related Questions