首页 > Python资料 博客日记
Python:通过接口获取公众号的文章列表(但是开发文档没有这个接口)
2024-09-18 11:00:06Python资料围观45次
📚博客主页:knighthood2001
✨公众号:认知up吧 (目前正在带领大家一起提升认知,感兴趣可以来围观一下)
🎃知识星球:【认知up吧|成长|副业】介绍
❤️感谢大家点赞👍🏻收藏⭐评论✍🏻,您的三连就是我持续更新的动力❤️
🙏笔者水平有限,欢迎各位大佬指点,相互学习进步!
看文档!看文档!看文档!
https://developers.weixin.qq.com/doc/offiaccount/Publish/Get_publication_records.html
我本来想通过微信公众平台的接口,获取群发的公众号文章链接,但是结果如下:
本应该返回包含文章链接的内容,但是是个空。
经过多次测试,我放弃了,然后在网上查了一下,说是没有获取群发文章列表的API。
因此这篇文章,就算是废了。只能用来记录一下,如何看官方文档,然后写例子。
获取access_token
Python:获取微信公众号的access_token
获取公众号的access_token
可以看上面这一篇。
这篇文章对获取access_token
进行封装了一下,因为你需要判断是否会出现其他错误,因此你需要if去判断。
APPID = "你的APPID"
APPSECRET = "你的APPSECRET"
def get_access_token():
# 构造请求的URL
url = f"https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={APPID}&secret={APPSECRET}"
response = requests.get(url)
return_json = response.json()
if 'errcode' in return_json:
if return_json["errcode"] == '40164':
print("IP白名单未配置:", return_json["errmsg"])
return None
else:
print("获取access_token失败,报错信息:", return_json["errmsg"])
return None
else:
access_token = response.json()["access_token"]
return access_token
比如下面的第一行,就是这个代码打印的,可以方便大家看没有配置的IP(不需要IP工具去查找本机IP)
上面这个函数成功运行后,不出其他错误,你就能得到access_token
。
获取稳定的access_token
获取稳定的access_token
,其实反而更加简单。
只需要构造一个请求体。
def get_stable_access_token():
# 构造请求的URL
url = "https://api.weixin.qq.com/cgi-bin/stable_token"
data = {
"grant_type": "client_credential",
"appid": APPID,
"secret": APPSECRET,
"force_refresh": False
}
response = requests.post(url, data=json.dumps(data))
access_token = response.json()["access_token"]
print('access_token:', access_token)
return access_token
获取文章列表
然后看一下微信公众平台开放文档。
可以看到,需要access_token
、offset
、count
。
但是,微信公众平台的API要求指定获取素材的类型。
type
字段用于告诉微信服务器你想要获取哪种类型的素材。在这个上下文中,news
表示你想要获取图文消息列表。
微信公众平台提供了多种类型的素材,包括
图文(news)
、图片(image)
、语音(voice)
、视频(video)
等。当你调用接口时,你需要明确指定你想要获取的素材类型,这样微信服务器才能返回正确的数据。
access_token
是需要放在API里面。
def get_article_list(count=10):
access_token = get_access_token()
# access_token = get_stable_access_token()
print('access_token:', access_token)
# 构造获取文章列表的URL
article_url = f"https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token={access_token}"
# 构造请求体
data = {
"type": "news",
"offset": 0,
"count": count
}
# 发送POST请求获取文章列表
response = requests.post(article_url, json=data)
# response = requests.post(article_url, data=json.dumps(data))
print(response.json())
# 解析返回的JSON数据
# articles = response.json()["item"]
# return articles
因此,我构造了这样一个函数。
首先就是构造API网址。将access_token
加进去。
article_url = f"https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token={access_token}"
然后构造请求体
data里面就是你需要放的参数,参数对了才可以得到指定的内容。count
就是你要获取的文章数量。
然后发送post
请求。下面这两种方式都是可以的。
response = requests.post(article_url, json=data)
response = requests.post(article_url, data=json.dumps(data))
json.dumps
是 Python 的json
模块中的一个函数,用于将 Python 对象转换(或序列化)为JSON
格式的字符串。这个函数非常有用,当你需要将 Python 数据结构(如字典、列表、元组等)转换为JSON
格式的文本时,你可以使用它。
全文的代码
import requests
import json
APPID = "wx465ccee8c1ea66f5"
APPSECRET = "b9d387d8ada1e82a69c809b7fc8ea2e7"
# APPID = "你的APPID"
# APPSECRET = "你的APPSECRET"
def get_access_token():
# 构造请求的URL
url = f"https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={APPID}&secret={APPSECRET}"
response = requests.get(url)
return_json = response.json()
if 'errcode' in return_json:
if return_json["errcode"] == '40164':
print("IP白名单未配置:", return_json["errmsg"])
return None
else:
print("获取access_token失败,报错信息:", return_json["errmsg"])
return None
else:
access_token = response.json()["access_token"]
return access_token
# access_token = "access_token 80_U6eqICBzuXntzzICOHBEQrKe4n4lH2MtMn-69791Kx1fjsQ28V2RkpSIuGrbhA2LKC2iGIAVCHvLE30k8Dli-Q3try69bR0UQihKi7hO_aIG0Q5HRI_kxAZcfOIFITdABAMPA"
def get_article_list(count=10):
access_token = get_access_token()
# access_token = get_stable_access_token()
print('access_token:', access_token)
# 构造获取文章列表的URL
article_url = f"https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token={access_token}"
# 构造请求体
data = {
"type": "news",
"offset": 0,
"count": count
}
# 发送POST请求获取文章列表
response = requests.post(article_url, json=data)
# response = requests.post(article_url, data=json.dumps(data))
print(response.json())
# 解析返回的JSON数据
# articles = response.json()["item"]
# return articles
def get_stable_access_token():
"""
获取稳定的access_token
Args:
无
Returns:
str: 返回稳定的access_token
"""
# 构造请求的URL
url = "https://api.weixin.qq.com/cgi-bin/stable_token"
data = {
"grant_type": "client_credential",
"appid": APPID,
"secret": APPSECRET,
"force_refresh": False
}
response = requests.post(url, data=json.dumps(data))
access_token = response.json()["access_token"]
print('access_token:', access_token)
return access_token
if __name__ == '__main__':
# get_access_token()
# 指定公众号名称和要获取的文章数量
count = 10
# 获取文章列表
# articles = get_article_list(count)
get_stable_access_token()
运行结果如下,就是返回结果不像开发文档里面说的,有相关内容,这里其实根本没有内容。
总结
本来还想通过接口获取公众号文章链接,但是这种方法行不通了,后续我打算使用selenium进行获取。
标签:
相关文章
最新发布
- 【Python】selenium安装+Microsoft Edge驱动器下载配置流程
- Python 中自动打开网页并点击[自动化脚本],Selenium
- Anaconda基础使用
- 【Python】成功解决 TypeError: ‘<‘ not supported between instances of ‘str’ and ‘int’
- manim边学边做--三维的点和线
- CPython是最常用的Python解释器之一,也是Python官方实现。它是用C语言编写的,旨在提供一个高效且易于使用的Python解释器。
- Anaconda安装配置Jupyter(2024最新版)
- Python中读取Excel最快的几种方法!
- Python某城市美食商家爬虫数据可视化分析和推荐查询系统毕业设计论文开题报告
- 如何使用 Python 批量检测和转换 JSONL 文件编码为 UTF-8
点击排行
- 版本匹配指南:Numpy版本和Python版本的对应关系
- 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
- Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
- 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
- Python与PyTorch的版本对应
- Anaconda版本和Python版本对应关系(持续更新...)
- Python pyinstaller打包exe最完整教程
- Could not build wheels for llama-cpp-python, which is required to install pyproject.toml-based proj