微信公众号(包括订阅号和服务号)提供了丰富的API接口供开发者上传和管理素材。以下是使用微信官方API上传素材的详细步骤和代码示例:
---
一、核心接口说明
微信素材上传主要通过以下两个接口:
1. 上传临时素材
- 接口地址:`https://api.weixin.qq.com/cgi-bin/media/upload?access_token=ACCESS_TOKEN&type=TYPE`
- 特点:素材有效期为3天,适用于临时测试。
2. 上传永久素材
- 接口地址:`https://api.weixin.qq.com/cgi-bin/material/add_material?access_token=ACCESS_TOKEN&type=TYPE`
- 特点:素材永久保存,需服务号且通过微信认证。
---
二、上传素材前的准备
1. 获取Access Token
- 通过 `https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET` 获取。
- 示例代码(Python):
python
import requests
def get_access_token(appid, appsecret):
url = f"https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&a