91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么使用php調用微信接口上傳永久素材

發布時間:2021-07-24 10:56:42 來源:億速云 閱讀:374 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關怎么使用php調用微信接口上傳永久素材的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

功能需求

公司新開的公眾號需要將公司平臺現在的所有精品文章都導入,手動導入會有很多的工作量,所以采用自動化同步文章的方式來達到效果

開發說明

微信open api提供了新增永久素材的接口,本次功能是基于這個接口進行數據同步的

使用到的接口

  1. 獲取永久素材列表接口:material/batchget_material

  2. 新增永久素材接口:material/add_news

  3. 新增媒體文件接口:material/add_material

  4. 圖文類型

  5. 單圖文(要求有默認的封面,需要提前上傳到微信公眾號后臺)

環境要求

php版本:5.5以下(因為下面代碼中的上傳媒體文件必須要求在此環境,否則會調用微信接口失敗)

開發流程

1、從公司平臺獲取所有的文章列表
2、遍歷文章列表,查看文章是否有圖片附件,若有進行第三步,否則進行第四步
3、檢測所有的附件,取出第一個圖片附件,并調用新增媒體文件接口上傳圖片獲得返回后的media_id
4、調用素材列表接口獲取默認的封面圖片,并從中得到的數據中獲取media_id
5、根據返回獲取到的media_id開始調用上傳圖文接口上傳素材
6、記錄返回信息

接口設計

獲取微信素材列表接口

此接口是用于獲取默認的圖片media_id同步平臺數據接口

此接口是用戶同步我們自己的文章數據到微信功能實現

接口常量

private $app_id = 'wx189ae9fa8816b131';
private $app_secret = '36f5f430c591acbae3505fe877733283';
const API_URL_PREFIX = 'https://api.weixin.qq.com/cgi-bin';
const MEDIA_FOREVER_UPLOAD_URL = '/material/add_material?';
const MEDIA_FOREVER_NEWS_UPLOAD_URL = '/material/add_news?';
const MEDIA_FOREVER_NEWS_UPDATE_URL = '/material/update_news?';
const MEDIA_FOREVER_GET_URL = '/material/get_material?';
const MEDIA_FOREVER_DEL_URL = '/material/del_material?';
const MEDIA_FOREVER_COUNT_URL = '/material/get_materialcount?';
const MEDIA_FOREVER_BATCHGET_URL = '/material/batchget_material?';

獲取微信素材列表接口

action接口方法

說明:該方法為此接口的入口方法

調用方式:http://${domain}/weixin/get_articles/

 /**
   * 獲取圖片素材接口
   */
  public function get_articles_action(){
   $token = $this->get_access_token();
   $list = $this->getForeverList($token,'image',0,20);
   echo json_encode($list);
  }
  get_access_token方法
  
  private function get_access_token() {
   $access_token = AWS_APP::cache()->get('access_token');
   if(!$access_token){
    error_log('get access_token from weixin ');
    $appId = $this->app_id;
    $appSecret = $this->app_secret;
    $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$appId&secret=$appSecret";
    $res = json_decode($this -> httpGet($url));
    $access_token = $res -> access_token;
    AWS_APP::cache()->set('access_token',$access_token,time()+3600);
   }else{
    error_log('get access_token from cache ');
   }
   error_log('access_token is :'.$access_token);
   return $access_token;
  }

調用微信素材接口方法

說明:該方法為調用微信獲取永久素材列表接口方法

 /**
  * 獲取永久素材列表
  * @param $token
  * @param $type 類型有image,vedio和audio
  * @param $offset 起始位置,0表示從第一個
  * @param $count 個數,區間為0~20
  */
  public function getForeverList($token,$type,$offset,$count){
   $data = array(
    'type' => $type,
    'offset' => $offset,
    'count' => $count,
   );
   $result = $this->http_post(
         self::API_URL_PREFIX.self::MEDIA_FOREVER_BATCHGET_URL.'access_token='.$token,
         self::json_encode($data)
         );
   error_log('forever list is :'.$result);
   if ($result)
   {
    $json = json_decode($result,true);
    if (isset($json['errcode'])) {
    $this->errCode = $json['errcode'];
    $this->errMsg = $json['errmsg'];
    return false;
    }
    return $json;
   }
   return false;
  }

同步文章到微信接口

action方法

說明:該方法為此接口的入口方法

調用方式:http://${domain}/weixin/upload_article/

/**
 * 同步問答的文章到訂閱號上接口
 */
public function index_action(){
 $article_list = $this->model('article')->get_articles_list(null, 1, 18, 'add_time DESC');
 $access_token = $this->get_access_token();
 $base_url = 'http://wenda.qiezilife.com/article/';
 foreach ($article_list as $key => $article){

  if($article['has_attach']){
   $attaches = $this->model('publish')->get_attach('article', $article['id'], 'max');
   foreach ($attaches as $i => $a){
    //過濾獲取第一張圖片
    if($a['is_image']){
     $attache = $a;
     break;
    }
   }

   $img = $attache['path'];
   $size = filesize($img);
   echo $img.',size is :'.$size;
   echo '<br/>';
   $file_info = array(
    'filename' => $img,
    'content-type' => 'image/jpg', //文件類型
    'filelength' => $size
   );
   $upload_img_result = $this->upload_meterial($file_info,$access_token);
   $media_id = $upload_img_result;
   error_log('media_id is ===============>'.$media_id);
  }else{
   $media_id = '1PoTp0SqruwWu_HX0HR_jUp4STX5HSpYkibb1Ca8ZQA';
  }

  $articles =array();
  //上傳圖片成功了就開始上傳圖文
  $upload_article_data = array(
   'title' => $article['title'],
   'thumb_media_id' => $media_id,
   'author' => '茄子營養師',
   'digest' => '茄子生活,你的品質生活指南',
   'show_cover_pic' => 1,
   'content' => $article['message'],
   'content_source_url' => $base_url.$article['id']
  );

  $articles[] = $upload_article_data;

  $data = array(
   'articles' => $articles
  );
  $result= $this->uploadForeverArticles($access_token,$data);
  echo self::json_encode($result);
  error_log('upload_article result is : '.json_encode($result));
  error_log('============================upload end============================');

  }
}

uploadForeverArticles方法

說明:該方法為調用微信上傳永久素材接口方法

/**
 * 上傳永久圖文素材(認證后的訂閱號可用)
 * 新增的永久素材也可以在公眾平臺官網素材管理模塊中看到
 * @param array $data 消息結構{"articles":[{...}]}
 * @return boolean|array
 */
public function uploadForeverArticles($access_token,$data){
 error_log('post data is=======> '.self::json_encode($data));
 $url = self::API_URL_PREFIX.self::MEDIA_FOREVER_NEWS_UPLOAD_URL.'access_token='.$access_token;
 $result = HTTP::request($url, 'POST', self::json_encode($data));
 error_log('weixin return result is =====>'.$result);
 if ($result)
 {
  $json = json_decode($result,true);
  if (!$json || !empty($json['errcode'])) {
   $this->errCode = $json['errcode'];
   $this->errMsg = $json['errmsg'];
   return false;
  }
  return $json;
 }
 return false;
}

upload_meterial方法

說明:該方法為調用微信上傳永久素材接口方法

  /**
   * 請注意該方法必須保證php的版本在5.6以下,否則會爆40015錯誤
   */
  function upload_meterial($file_info,$access_token){
   $url="https://api.weixin.qq.com/cgi-bin/material/add_material?access_token={$access_token}&type=image";
   $ch2 = curl_init ();
   $timeout = 5;
   $real_path="{$file_info['filename']}";
   //$real_path=str_replace("/", "\\", $real_path);
   $data= array("media"=>"@{$real_path}",'form-data'=>$file_info);
   curl_setopt ( $ch2, CURLOPT_URL, $url );
   curl_setopt ( $ch2, CURLOPT_POST, 1 );
   curl_setopt ( $ch2, CURLOPT_RETURNTRANSFER, 1 );
   curl_setopt ( $ch2, CURLOPT_CONNECTTIMEOUT, $timeout );
   curl_setopt ( $ch2, CURLOPT_SSL_VERIFYPEER, FALSE );
   curl_setopt ( $ch2, CURLOPT_SSL_VERIFYHOST, false );
   curl_setopt ( $ch2, CURLOPT_POSTFIELDS, $data );
   $result = curl_exec ( $ch2 );
   echo '<br/>';
   echo 'reulst is ==========>'.$result;
   curl_close ( $ch2 );
   if(curl_errno()==0){
    $result=json_decode($result,true);
    //var_dump($result);
    return $result['media_id'];
   }else {
    return false;
   }
  }

http_post方法

說明:該方法為調http post請求方法

/**
 * POST 請求
 * @param string $url
 * @param array $param
 * @param boolean $post_file 是否文件上傳
 * @return string content
 */
private function http_post($url,$param,$post_file=false){
 $oCurl = curl_init();
 if(stripos($url,"https://")!==FALSE){
  curl_setopt($oCurl, CURLOPT_SSL_VERIFYPEER, FALSE);
  curl_setopt($oCurl, CURLOPT_SSL_VERIFYHOST, false);
  curl_setopt($oCurl, CURLOPT_SSLVERSION, 1); //CURL_SSLVERSION_TLSv1
 }
 if (is_string($param) || $post_file) {
  $strPOST = $param;
 } else {
  $aPOST = array();
  foreach($param as $key=>$val){
   $aPOST[] = $key."=".urlencode($val);
  }
  $strPOST = join("&", $aPOST);
 }
 curl_setopt($oCurl, CURLOPT_URL, $url);
 curl_setopt($oCurl, CURLOPT_RETURNTRANSFER, 1 );
 curl_setopt($oCurl, CURLOPT_POST,true);
 curl_setopt($oCurl, CURLOPT_POSTFIELDS,$strPOST);
 $sContent = curl_exec($oCurl);
 $aStatus = curl_getinfo($oCurl);
 curl_close($oCurl);
 if(intval($aStatus["http_code"])==200){
  return $sContent;
 }else{
  return false;
 }
}

遇到的問題

在開發的過程中,在調用微信上傳媒體文件時候始終得到的返回數據為

{"errcode":41005,"errmsg":"media data missing hint: [3fSt_0048e297]"}

原因:php版本的問題,我本機的版本5.6,而帶有@識別的php方法必須是5.5以下才能識別,5.5以上的版本將這個特性去除了。

解決方法:更換php的版本到5.5或者5.5以下,不更換php的版本的方法暫時沒有找到

感謝各位的閱讀!關于“怎么使用php調用微信接口上傳永久素材”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

朝阳市| 游戏| 鸡东县| 永吉县| 望江县| 怀化市| 大厂| 古蔺县| 吉首市| 高雄县| 于田县| 田林县| 绥宁县| 怀来县| 都江堰市| 通榆县| 道真| 湖北省| 绵阳市| 铁岭县| 南丹县| 富平县| 于都县| 五华县| 和静县| 宁南县| 新干县| 武强县| 图们市| 广丰县| 塔河县| 明溪县| 读书| 遵化市| 安西县| 苍溪县| 南陵县| 三都| 新宁县| 酉阳| 公安县|