微信公众号的注册需要使用邮箱,而一个邮箱又只能注册一个微信公众号。有时候注册管理的公众号多了,新注册公众号时,就不记得自己的哪些邮箱已经注册了,哪些没注册。
微信公众号的注册页面本身是提供了邮箱的检测的。
我们使用它的接口,用Python来调用,10行代码就能够搞定:
# coding:utf-8 # 检查微信公众号注册邮箱 import requests import json import random def 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(0,1)} wbdata = requests.post(url,data=data,headers=header) print(wbdata.text)
当响应的内容为:
{"base_resp":{"err_msg":"ok","ret":0}}
表示的就是未注册的邮箱
而响应内容为:
{"base_resp":{"err_msg":"default","ret":201014}}
表示的就是邮箱已经注册了公众号
是不是很简单,用处不是很大,但有需要的时候还是很方便。
文章版权所有:州的先生博客,转载必须保留出处及原文链接