公衆号H5授權登錄原理 - 新聞資(zī)訊 - 雲南小程序開發|雲南軟件開發|雲南網站(zhàn)建設-西山區知普網絡科技工作室

159-8711-8523

雲南網建設/小程序開發/軟件開發

知識

不管是網站(zhàn),軟件還是小程序,都要直接或間接能為您産生價值,我們在追求其視覺表現的同時,更側重于功能的便捷,營銷的便利,運營的高效,讓網站(zhàn)成為營銷工具,讓軟件能切實提升企業(yè)内部管理水平和(hé)效率。優秀的程序為後期升級提供便捷的支持!

公衆号H5授權登錄原理

發表時間:2020-10-27

發布人:葵宇科技

浏覽次數:29

公衆号H5授權登錄

在微信公衆号裡獲取微信用戶信息分兩種方式

注意:以下(xià)所有操作,都需要再公衆号配置網頁授權配置域名授權

1.以snsapi_base為scope發起的網頁授權

這種方式是靜默獲取,對用戶來說是無感的,看不到任何變化

使用場景,隻能獲取到openid,調用微信支付使用,無法獲取頭像昵稱等數據

$wxurl = https://open.weixin.qq.com/connect/oauth2/authorize?appid=你(nǐ)的APPID&redirect_uri={$url}&response_type=code&scope=snsapi_base&state=STATE&connect_redirect=1#wechat_redirect

注意參數說明:

appid=你(nǐ)的APPID

{$url}回調的url地址,url需要用urlencode編碼

scope=snsapi_base 靜默授權類型

使用說明

$wxurl 這個(gè)鍊接地址是固定的拼接方式,微信官網有文(wén)檔點擊我獲取

把拿到的這個(gè)連接給前端,前端通(tōng)過讓用戶觸發這個(gè)鍊接,跳轉獲取微信的code參數,或者自己通(tōng)過代碼觸發跳轉

微信跳轉後得到的鍊接 https://domain.com/index/index/wxlogin?code=051pYGkl2bQ3S54TUxll2ttJ6Z2pYGk0&state=STATE

後面多了code參數和(hé)state參數,如(rú)果跳轉的是後端,後端直接獲取code就可(kě)以,如(rú)果跳轉的是前端, 前端截取url,拿到code傳給後端

$wxurl必須在微信裡打開才能獲取到code,開發調試請使用微信開發者工具,獲取結果如(rú)下(xià)

{"access_token":"38_gUjz8OA3RUbAiGSEB-o68bSAyI8rGVwOXmNepBHXKdcCEiNotFb3e9CTzFTxsFt21PxwXT3l9qUsL3gNBcsg8A","expires_in":7200,"refresh_token":"38_7aZk0NQHhLOO5e3j-uqVl5na48CMvuoedJ90c3lDmby8mOEsBHcsfT4SPtQJTMpMdx8GKFFR7sXFj6Nuu8h21A","openid":"obBHk04gFkeKsRVDowMfXn-LLYpU","scope":"snsapi_base"}

實現截圖

實現代碼

//後台代碼  我用的是tp5
public function wxlogin()
    {
        $appid = '';
        $appsecret = '';
        $input = input();
        if(!empty($input['code'])){
            $url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$appsecret.'&code='.$input['code'].'&grant_type=authorization_code';
            $client = new Client(); //GuzzleHttp\Client 模拟http 請求,如(rú)果不會用 直接換成curl函數
            $result = $client->get($url)->getBody()->getContents();
            echo $result;
            //die();
            $api_data = json_decode($result, true);
            //$api_data 裡就是我們要獲取的openid
        }
        $url = urlencode('https://d-fangfei.bigchun.com/index/index/wxlogin');
        $this->assign('url', $url);
        return $this->view->fetch();
    }
    
前端代碼
<p>
    <a href="https://open.weixin.qq.com/connect/oauth2/authorize?appid=你(nǐ)的APPID&redirect_uri={$url}&response_type=code&scope=snsapi_base&state=STATE&connect_redirect=1#wechat_redirect">
        獲取靜默授權獲取code
    </a>
</p>

2.以snsapi_userinfo為scope發起的網頁授權

這種方式是授權獲取,會彈出讓用戶确認獲取資(zī)料按鈕

使用場景,可(kě)以獲取用戶openid,頭像,昵稱,性别等資(zī)料

$wxurl = https://open.weixin.qq.com/connect/oauth2/authorize?appid=APPID&redirect_uri={$url}&response_type=code&scope=snsapi_userinfo&state=STATE&connect_redirect=1#wechat_redirect

注意參數說明:

appid=你(nǐ)的APPID

{$url}回調的url地址,url需要用urlencode編碼

scope = snsapi_userinfo

靜默授權類型

使用說明

$wxurl 這個(gè)鍊接地址是固定的拼接方式,微信官網有文(wén)檔點擊我獲取

把拿到的這個(gè)連接給前端,前端通(tōng)過讓用戶觸發這個(gè)鍊接,跳轉獲取微信的code參數,或者自己通(tōng)過代碼觸發跳轉

微信跳轉後得到的鍊接 https://domain.com/index/index/wxlogin?code=051pYGkl2bQ3S54TUxll2ttJ6Z2pYGk0&state=STATE

後面多了code參數和(hé)state參數,如(rú)果跳轉的是後端,後端直接獲取code就可(kě)以,如(rú)果跳轉的是前端, 前端截取url,拿到code傳給後端

實現過程截圖

$wxurl必須在微信裡打開才能獲取到code,開發調試請使用微信開發者工具,獲取結果如(rú)下(xià):

{"openid":"obBHk04gFkeKsRVDowMfXn-LLYpU","nickname":"D永濤","sex":1,"language":"zh_CN","city":"深圳","province":"廣東","country":"中(zhōng)國","headimgurl":"https:\/\/thirdwx.qlogo.cn\/mmopen\/vi_32\/DYAIOgq83eremdfYmic4MpxiadSdloCicKKNOdMZCIIQdwmiaPluD8NDVxXN5axqc9kmVGxVoFo88UkEy9GPKpicQUw\/132","privilege":[],"unionid":"oKzvn1ZU_Ne_4or8VLwhtZxlJOJU"}

實現截圖

1.觸發截圖

2.拼接上code後得到的結果

實現代碼

//後台實現代碼
public function wxlogin()
    {
        $appid = '';
        $appsecret = '';
        $input = input();
        if(!empty($input['code'])){
            $url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$appsecret.'&code='.$input['code'].'&grant_type=authorization_code';//微信接口地址,參考接口文(wén)檔
            $client = new Client(); //GuzzleHttp\Client 模拟http 請求,如(rú)果不會用 直接換成curl函數
            $result = $client->get($url)->getBody()->getContents();
            $api_data = json_decode($result, true);
            if(!empty($api_data['openid'])){
                $url = 'https://api.weixin.qq.com/sns/userinfo?access_token='.$api_data['access_token'].'&openid='.$api_data['openid'].'&lang=zh_CN';//微信接口地址,參考接口文(wén)檔
                $client = new Client();
                $result = $client->get($url)->getBody()->getContents();
                $userinfo = json_decode($result, true);
                print_r($userinfo);
            }
        }
        $url = urlencode('https://d-fangfei.bigchun.com/index/index/wxlogin');
        $this->assign('url', $url);
        return $this->view->fetch();
    }
前端實現代碼
<p>
    <a href="https://open.weixin.qq.com/connect/oauth2/authorize?appid=你(nǐ)的APPID&redirect_uri={$url}&response_type=code&scope=snsapi_userinfo&state=STATE&connect_redirect=1#wechat_redirect">
        微信授權登錄
    </a>
</p>

有問(wèn)題可(kě)以加裙問(wèn)我,我是群主721200119

相關(guān)案例查看更多