Access to WeChat Web Interface

Is there a way to download all user messages or contacts using some kind of web API? I have an account that receives a lot of messages, and I need to parse these messages. It would be very painful to do this manually, so the web API would be a real life-saving.

+4
source share
1 answer

If you mentioned your official WeChat account, you can do this by setting up your developer's server. When a regular user sends a message to the official account, the wechat server sends the XML package to your predefined URL, and you can store the data in your database for further analysis. For more information, kindly consider this URL: http://admin.wechat.com/wiki/index.php?title=Common_Messages

If you mentioned a normal user account, since I know that it is not possible to load / commit an incoming message from the web API.

+1
source

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


All Articles