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

溫馨提示×

溫馨提示×

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

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

小程序客服發送圖片信息如何實現

發布時間:2021-01-28 15:06:46 來源:億速云 閱讀:244 作者:小新 欄目:移動開發

這篇文章將為大家詳細講解有關小程序客服發送圖片信息如何實現,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

本篇文章給大家帶來的內容是關于小程序實例:小程序客服發送圖片信息的實現代碼,有一定的參考價值,有需要的朋友可以參考一下,希望對你有所幫助。

   /**
     * 發送客服消息接口
     */
    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://cache.yisu.com/upload/information/20201208/261/14179';        
        $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;
    }

關于“小程序客服發送圖片信息如何實現”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

宣化县| 江油市| 黄平县| 泽普县| 乳山市| 武定县| 玉树县| 平山县| 宿松县| 正阳县| 成武县| 北安市| 牙克石市| 闻喜县| 高雄市| 修文县| 乐安县| 浮山县| 汶川县| 新泰市| 晋城| 阳西县| 迁西县| 弋阳县| 元江| 安泽县| 海阳市| 武鸣县| 荥经县| 乌鲁木齐县| 五家渠市| 泗阳县| 茂名市| 南充市| 清远市| 罗山县| 临邑县| 连江县| 昌吉市| 呈贡县| 五常市|