首先使用新增临时素材接口进行新增(http请求方式:POST/FORM,使用https https://api.weixin.qq.com/cgi-bin/media/upload?access_token=ACCESS_TOKEN&type=TYPE 调用示例(使用 curl 命令,用 FORM 表单方式上传一个多媒体文件): curl -F media=@test.jpg "https://api.weixin.qq.com/cgi-bin/media/upload?access_token=ACCESS_TOKEN&type=TYPE"),新增成功返回有media_id,将这个media_id用在上传图文消息素材【订阅号与服务号认证后均可用】接口(http请求方式: POST https://api.weixin.qq.com/cgi-bin/media/uploadnews?access_token=ACCESS_TOKEN)中作为入参thumb_media_id使用,返回报错40004。contentString:{"errcode":40004,"errmsg":"invalid media type hint: [04408677] rid: 63511220-73cac615-7311b4ca"}
不知到底哪个地方错了?