微信素材永久mediaID如何获取? 20
那么问题来了,下图中这个thumb_media_id应该如何获取呢?
http://mp.weixin.qq.com/wiki/14/7e6c03263063f4813141c3e17dd4350a.html 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏20(财富值+成长值)
<?php
//微信上传永久素材
ob_clean();
include "wechat.class.php";
$options = [
'token' => 'xxxx', //填写你设定的key
'encodingaeskey' => 'xxxx', //填写加密用的EncodingAESKey,如接口为明文模式可忽略
'appid' => 'xxx', //填写高级调用功能的app id
'appsecret' => 'xxxx', //填写高级调用功能的密钥
];
$weObj = new Wechat($options);
$weObj->checkAuth();
//$weObj->valid(); //明文或兼容模式可以在接口验证通过后注释此句,但加密模式一定不能注释,否则会验证失败
define('BASE_PATH',str_replace('\\','/',realpath(dirname(__FILE__).'/'))."/");
$img = BASE_PATH.'logo.jpg';
// $img = str_replace("/wechat","",$img);
$size = filesize($img);
$file_info['filename'] =$img;
$file_info['content-type']='image/jpg';
$file_info['filelength']=$size;
$result = $weObj->uploadFile($img);
//$result = $weObj->upload_meterial($file_info);
echo json_encode($result);