请问有解决吗
微信公众号API创建图文素材的时候怎么插入音频?例如需求是通过API自动生成一篇文章并插入一段音频文件, 现在已经能把音频文件上传到公众号后台,获取到了media_id但是要把音频文件插入到图文素材文章内容中需要用到一个voice_encode_fileid字段,如何获取到或者生成这个值?现在是API上传音频只返回一个media_id,但这个media_id在后续的步骤中用不到。。。 需要用到的又无法获取到
2023-10-20请问是通过接口修改素材名称的吗
音频素材改标题后接口重新获取还是旧标题?获取永久素材接口,为什么音频素材变更了标题后,重新调用接口获取的音频素材的标题还是旧标题???如何解决? https://developers.weixin.qq.com/doc/offiaccount/Asset_Management/Getting_Permanent_Assets.htmlhttps://developers.weixin.qq.com/doc/offiaccount/Asset_Management/Get_materials_list.htmlhttps://developers.weixin.qq.com/doc/offiaccount/Message_Management/Passive_user_reply_message.html
2023-10-20请问楼主有解决这个问题吗
上传永久素材怎么定不了标题 ? 我这边上传了音频上传成功但定不了标题!$file = new \CURLFile($real_path); $file_info = array( 'filename' => '$img', 'content-type' => 'image/jpg', //文件类型 'filelength' => filesize($real_path) ); $data= array("media"=>$file,'form-data'=>$file_info); curl_setopt($ch1, CURLOPT_URL, $url); curl_setopt($ch1, CURLOPT_POST, 1); curl_setopt($ch1, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch1, CURLOPT_CONNECTTIMEOUT, $timeout); curl_setopt($ch1, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch1, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($ch1, CURLOPT_POSTFIELDS, $data); $result = curl_exec($ch1); // $result=json_decode($result,true); // $result=$result['media_id']; return $result; [图片]
2023-10-19