真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

微信小程序如何生成帶參數(shù)的小程序二維碼

微信小程序如何生成帶參數(shù)的小程序二維碼,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),光明企業(yè)網(wǎng)站建設(shè),光明品牌網(wǎng)站建設(shè),網(wǎng)站定制,光明網(wǎng)站建設(shè)報價,網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,光明網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。

官方提供生成小程序碼的兩種方式:https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/qr-code.html

https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/qr-code/wxacode.getUnlimited.html

服務(wù)端生成小程序碼

//小程序碼
public function getWxcode()
{
    $ACCESS_TOKEN = $this->getWxAccessToken();
    $url = "https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=" . $ACCESS_TOKEN['access_token'];
    $post_data =
        array(
            'page' => 'pages/my/my', //掃碼跳轉(zhuǎn)頁面
            'scene' => input('invite_code') //用戶邀請碼
        );
    $post_data = json_encode($post_data);
    $data = $this->send_post($url, $post_data);
    $result = $this->data_uri($data, 'image/png');
    return '';
    //return $result;
}

private function getWxAccessToken()
{
    $appid = '******';
    $appsecret = '*******';
    $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" . $appid . "&secret=" . $appsecret;
    $access_token = $this->makeRequest($url);
    $access_token = json_decode($access_token['result'], true);
    return $access_token;

}

/**
 * 發(fā)起http請求
 * @param string $url 訪問路徑
 * @param array $params 參數(shù),該數(shù)組多于1個,表示為POST
 * @param int $expire 請求超時時間
 * @param array $extend 請求偽造包頭參數(shù)
 * @param string $hostIp HOST的地址
 * @return array    返回的為一個請求狀態(tài),一個內(nèi)容
 */
private function makeRequest($url, $params = array(), $expire = 0, $extend = array(), $hostIp = '')
{
    if (empty($url)) {
        return array('code' => '100');
    }

    $_curl = curl_init();
    $_header = array(
        'Accept-Language: zh-CN',
        'Connection: Keep-Alive',
        'Cache-Control: no-cache'
    );
    // 方便直接訪問要設(shè)置host的地址
    if (!empty($hostIp)) {
        $urlInfo = parse_url($url);
        if (empty($urlInfo['host'])) {
            $urlInfo['host'] = substr(DOMAIN, 7, -1);
            $url = "http://{$hostIp}{$url}";
        } else {
            $url = str_replace($urlInfo['host'], $hostIp, $url);
        }
        $_header[] = "Host: {$urlInfo['host']}";
    }

    // 只要第二個參數(shù)傳了值之后,就是POST的
    if (!empty($params)) {
        curl_setopt($_curl, CURLOPT_POSTFIELDS, http_build_query($params));
        curl_setopt($_curl, CURLOPT_POST, true);
    }

    if (substr($url, 0, 8) == 'https://') {
        curl_setopt($_curl, CURLOPT_SSL_VERIFYPEER, FALSE);
        curl_setopt($_curl, CURLOPT_SSL_VERIFYHOST, FALSE);
    }
    curl_setopt($_curl, CURLOPT_URL, $url);
    curl_setopt($_curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($_curl, CURLOPT_USERAGENT, 'API PHP CURL');
    curl_setopt($_curl, CURLOPT_HTTPHEADER, $_header);

    if ($expire > 0) {
        curl_setopt($_curl, CURLOPT_TIMEOUT, $expire); // 處理超時時間
        curl_setopt($_curl, CURLOPT_CONNECTTIMEOUT, $expire); // 建立連接超時時間
    }

    // 額外的配置
    if (!empty($extend)) {
        curl_setopt_array($_curl, $extend);
    }

    $result['result'] = curl_exec($_curl);
    $result['code'] = curl_getinfo($_curl, CURLINFO_HTTP_CODE);
    $result['info'] = curl_getinfo($_curl);
    if ($result['result'] === false) {
        $result['result'] = curl_error($_curl);
        $result['code'] = -curl_errno($_curl);
    }

    curl_close($_curl);
    return $result;
}

/**
 * 消息推送http
 * @param $url
 * @param $post_data
 * @return bool|string
 */
private function send_post($url, $post_data)
{
    $options = array(
        'http' => array(
            'method' => 'POST',
            'header' => 'Content-type:application/json',
            //header 需要設(shè)置為 JSON
            'content' => $post_data,
            'timeout' => 60
            //超時時間
        )
    );
    $context = stream_context_create($options);
    $result = file_get_contents($url, false, $context);
    return $result;
}

//二進制轉(zhuǎn)圖片image/png
private function data_uri($contents, $mime)
{
    $base64 = base64_encode($contents);
    return ('data:' . $mime . ';base64,' . $base64);
}

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。


網(wǎng)頁名稱:微信小程序如何生成帶參數(shù)的小程序二維碼
地址分享:http://weahome.cn/article/ppgise.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部