是否有任何 API 或方法可以在您的应用程序中获取 whatsapp 聊天消息
whatsapp 是否提供了任何 API,可以让其他应用程序从官方 whatsapp 应用程序中提取聊天消息,就像 google/facebook 那样.
Is there any API provided by whatsapp, that lets other apps to extract chat messages from official whatsapp app, just like google/facebook does.
有没有什么方法可以导出用户的聊天消息.我读了一些需要解密由whatsapp创建的数据库文件的方法,这是唯一的方法吗?
Is there any method which can export the chat messages of users. I read about some methods which requires decrypting database file created by whatsapp, is that the only way?
Whatsapp 没有提供任何方法.只有备份是加密的,如果您在设备中访问/data/data/com.whatsapp/databases/msgstore.db 它只是一个 SQLite 数据库,您可以通过 Android Java 应用程序直接访问或将其推送到设备并访问通过计算机上的任何其他语言.
there is no way provided by Whatsapp. Only backups are encrypted, if you access to /data/data/com.whatsapp/databases/msgstore.db in your devices it is just a SQLite database that you may access directly via Android Java application or push it out the device and access to it via any other language on a computer.
您必须对设备进行 root 才能访问该文件,但如果您想避免该特定问题,则无需解密数据库,使用真实数据库而不是备份文件.
You must root your device to get to the file, but there is no need to decrypt the database if you want to avoid that particular issue, taking the real database instead of a backup file.
问候,