Building a WeChat Chatbot for Message Logging and Analysis
Introduction
In corporate environments where knowledge sharing is encouraged, tracking shared content can become challenging as volume increases. This solution implements a Python-based WeChat chatbot that automatically logs shared messages to Excel files for accurate record-keeping.
Implementation Overview
The system uses wxpy for WeChat integ ...
Posted on Mon, 15 Jun 2026 16:40:34 +0000 by twopeak
Extracting and Decrypting WeChat PC User Data and Chat History
Extracting user information and chat records from the Windows desktop version of WeChat involves understanding its internal storage mechanisms, memory structures, and encryption schemes. This process is particularly relevant in digital forensics, incident response, or red team operations where a target machine is already compromised and WeChat ...
Posted on Thu, 04 Jun 2026 18:21:19 +0000 by shinagawa
Implementing Alipay and WeChat Scheme-Based App Payments in Third-Party H5 Environments
Alipay Scheme ConfigurationThe Alipay client can be invoked via the alipay:// protocol. The deep link structure mandates a fixed application identifier and an encoded payment string.Link Structurealipay://platformapi/startapp?appId=20000067&url={encodeURIComponent_payload}The appId parameter remains constant at 20000067. The url parameter a ...
Posted on Sun, 24 May 2026 18:50:46 +0000 by Jas
Integrating Coze API with WeChat Group Chatbots
Account Risk WarningAutomating WeChat messages violates platform policies and carries a high risk of account suspension. Always operate using a secondary WeChat account to isolate potential bans from your primary profile.System ArchitectureThe domestic Coze platform now exposes its API, allowing developers to bypass the web interface and integr ...
Posted on Wed, 20 May 2026 05:11:52 +0000 by slicer123
Implementing WXS Modules in WeChat Mini Programs
Using WXS in Views
Integrate script blocks into WXML by utilizing the <wxs> tag. Define the module namespace with module and link the source file via src. Functions within these blocks are callable directly using Mustache syntax.
<wxs module="utilLib" src="/pages/lib/helpers.wxs"></wxs>
<view>{{ utilL ...
Posted on Thu, 07 May 2026 21:08:45 +0000 by lajollabob
WeChat Friend Analytics: Visualizing Gender Distribution, Location Heatmaps, and Signature Word Clouds
Overview
This article extends the WeChat bot implementation by analyzing friend statistics using wxpy library. The analysis covers gender distribution, geographic distribution across provinces and cities, signature word clouds, and location-based heatmaps.
Implementation Components
Word Cloud Generation
The wordcloud libray generates visual wor ...
Posted on Thu, 07 May 2026 12:57:07 +0000 by x01440