Study how WeChat's web API worked before rate limits were introduced as a historical reference
Use as a starting point for understanding social platform API-based contact detection patterns
Explore the linked alternative implementations in Go, Node.js, and as a Chrome extension
This tool no longer works, WeChat patched both the rate limit on group creation and the underlying assumption that deleted contacts cannot be added to groups.
This is a small Python script designed to check whether WeChat contacts have removed you from their friend list. WeChat does not notify users when someone deletes them, and there is no official way to find out. The tool worked around this by using WeChat's web API to create a group chat and attempt to add each contact. If a contact could not be added, it indicated they had deleted the user. Running the script required Python, the requests library, and logging into WeChat via a terminal prompt. The README is written in Chinese and is brief. It begins with a notice that the tool no longer works due to two blocking issues: WeChat introduced rate limits on the group creation API that break the detection method when the total number of additions exceeds a threshold, and a reader reported that even deleted contacts can still be added to groups, which removes the entire basis for the detection approach. Links in the README point to alternative implementations of the same idea in Go, Node.js, and as a Chrome extension, as well as to a larger WeChat web API project and a community-maintained protocol reference document. The README also notes that the script leaves behind a single-member group that must be deleted manually after running. The project is effectively abandoned and is kept as a reference. The author acknowledges the tool is no longer functional and advises visitors not to bother trying it.
← 0x5e on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.