开发文档: https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/Requesting_an_API_Test_Account.html 相关接口: 1.获取accesstoken: https://api.weixin.qq.com/cgi-bin/token 2.新增图片素材: https://api.weixin.qq.com/cgi-bin/material/add_material 3.新建草稿: https://api.weixin.qq.com/cgi-bin/draft/add 4.发布: https://api.weixin.qq.com/cgi-bin/freepublish/submit 5.查询发布状态: https://api.weixin.qq.com/cgi-bin/freepublish/get
微信测试公众号调用发布接口的时候,一直提示"publish_status": 3 ?需求:网站文章自动同步发送到微信公众号; 操作流程: 1.申请测试公众号;(成功) 2.获取Accesstoken;(成功) 3.新增缩略图素材;(成功) 4.新建草稿;(成功),生成media_id:xXBsCYzLKvPkU_RfaKm-k-VdtgAQLpwuLuwknSe9wcI 5.发布;(成功),生成publish_id:2247483655 6.查询发布状态;(失败),"publish_status": 3 ,后台查看API文档,是说常规失败,这里并未给出具体原因; 怎么分析失败的具体原因呢? 查询发布状态: { "publish_id": 2247483655, "publish_status": 3, "fail_idx": [ 1 ] }
2021-11-04