首頁 微信小程式 小程式開發 小程式實例:小程式客服傳送圖片訊息的實作程式碼

小程式實例:小程式客服傳送圖片訊息的實作程式碼

Aug 21, 2018 pm 05:19 PM

這篇文章帶給大家的內容是關於小程式實例:小程式客服發送圖片訊息的實作程式碼,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

   /**
     * 发送客服消息接口
     */
    public function actionCustomService()
    {
        $data = file_get_contents('php://input');        
        $data = json_decode($data,true);        
        $qrcode_url = Yii::$app->params['gzh_qrcode'];        
        $openId = $data['FromUserName'];        
        $access_token = self::getAccessToken();        
        $url = 'https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token='.$access_token;        
        $appid = Yii::$app->params['miniAppid'];        
        $media_id = self::getRedis("wx_material:$appid", 'media_id');        
        if (!$media_id) {            
        $material = self::uploadImg($qrcode_url,$access_token);            
        if ($material) {                
        $redis = Yii::$app->redis;                
        $redis->hmset("wx_material:$appid", 'type', $material['type'], 'media_id', $material['media_id'], 'created_at', $material['created_at']);                
        $redis->expire("wx_material:$appid", 7200);
            }            
            $media_id = $material['media_id'];
        }        
        $data1 = [
                'touser' => $openId,            
                'msgtype' => 'image',            
                'image' => [
                       'media_id' => $media_id,
            ],
        ];        
        $data1 = json_encode($data1,JSON_UNESCAPED_UNICODE);       
        $result = self::https_request($url,$data1);        
        echo 'success';
    }
登入後複製
   //上传素材到微信
    public static function uploadImg($img,$access_token)
    {
        $url = 'https://api.weixin.qq.com/cgi-bin/media/upload?access_token='.$access_token.'&type=image';        
        $fileName = time() . '.jpg';        
        $source = file_get_contents($img);
        file_put_contents('./images/material/'.$fileName,$source);        
        if (class_exists('\CURLFile')) {            
        $josn = array('media' => new \CURLFile(realpath("images/material/" . $fileName)));
        } else {            
        $josn = array('media' => '@' . realpath("images/material/" . $fileName));
        }
        unlink('./images/material/'.$fileName);        
        $result = self::curl_post($url,$josn);        
        $result = json_decode($result,true);        
        return $result;
    }
登入後複製

下面的都是通用程式碼

    //获取access_token
    public static function getAccessToken()
    {
        $appid = Yii::$app->params['miniAppid'];        
        $appsecret = Yii::$app->params['miniSecret'];        
        $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid='.$appid.'&secret='.$appsecret;        
        $result = self::httpGet($url);        
        $access_token = json_decode($result,true)['access_token'];        
        return $access_token;
    }
登入後複製
    //get方法获取内容
    private static function httpGet($url)
    {
        $curl = curl_init();
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($curl, CURLOPT_TIMEOUT, 500);
        curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 2);
        curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2);
        curl_setopt($curl, CURLOPT_URL, $url);        
        $res = curl_exec($curl);
        curl_close($curl);        
        return $res;
    }
登入後複製
    //http请求
    public static function https_request($url,$data=null)
    {
        $curl = curl_init();
        curl_setopt($curl,CURLOPT_URL,$url);
        curl_setopt($curl,CURLOPT_SSL_VERIFYPEER,FALSE);
        curl_setopt($curl,CURLOPT_SSL_VERIFYHOST,FALSE);        
        if(!empty($data)){
            curl_setopt($curl,CURLOPT_POST,1);
            curl_setopt($curl,CURLOPT_POSTFIELDS,$data);
        }
        curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);        
        $output = curl_exec($curl);
        curl_close($curl);        
        return $output;
    }
登入後複製

#相關推薦:

小程式中授權相簿的解決方法(附程式碼)

微信小程式實例:點選事件與長按事件的程式碼實作

#

以上是小程式實例:小程式客服傳送圖片訊息的實作程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)