In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/01 Report--
This article shows you how to use Python to complete the Wechat official account email detection, the content is concise and easy to understand, absolutely can make your eyes bright, through the detailed introduction of this article, I hope you can get something.
The registration of Wechat official account requires the use of an mailbox, and a mailbox can only register one Wechat official account. Sometimes there are more official accounts for registration management, and when you register a new official account, you can't remember which mailboxes have been registered and which ones are not registered.
The registration page of Wechat official account itself provides mailbox detection.
We can use its interface, call it with Python, and do it in 10 lines of code:
# coding:utf-8# check Wechat official account registered email import requestsimport randomdef wechatCheckEmail (email): header = {"Host": "mp.weixin.qq.com", "Origin": "https://mp.weixin.qq.com","Referer":"https://mp.weixin.qq.com/cgi-bin/readtemplate?t=register/step1_tmpl&lang=zh_CN"} url = 'https://mp.weixin.qq.com/acct/emailregisterpage' data = {" email ": email "type": "check", "lang": "zh_CN", "f": "json", "ajax": "1", "random": random.uniform (0Magne1)} wbdata = requests.post (url,data=data,headers=header) print (wbdata.text)
When the content of the response is:
{"base_resp": {"err_msg": "ok", "ret": 0}}
Represents an unregistered mailbox
The response content is:
{"base_resp": {"err_msg": "default", "ret": 201014}}
It means that the mailbox has registered an official account.
There are only 11 lines of code with comments.
Is it very simple? it's not very useful, but it's still very convenient when you need it.
The above content is how to use Python to do Wechat official account email detection, have you learned the knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.