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

溫馨提示×

溫馨提示×

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

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

微信-網頁授權獲取用戶openid

發布時間:2020-04-01 12:36:53 來源:網絡 閱讀:2255 作者:jackson203 欄目:web開發

第一步:用戶同意授權,獲取code


在確保微信公眾賬號擁有授權作用域(scope參數)的權限的前提下(服務號獲得高級接口后,默認帶有scope參數中的snsapi_base和snsapi_userinfo),引導關注者打開如下頁面:


https://open.weixin.qq.com/connect/oauth3/authorize?appid=APPID&redirect_uri=REDIRECT_URI&response_type=code&scope=SCOPE&state=STATE#wechat_redirect

所以

先用調試接口生成自定義菜單,菜單json如下:

{

    "button":[

    {

         "name":"風信科技",

 "sub_button":[

          {

              "type":"click",

              "name":"關于風信",

              "key":"FS_V1_1001"

           },

           {

              "type":"click",

              "name":"我們的服務",

              "key":"FS_V1_1002"

           },

           {

              "type":"click",

              "name":"成功案例",

              "key":"FS_V1_1003"

           },

{

              "type":"click",

              "name":"解決方案",

              "key":"FS_V1_1004"

           },

{

              "type":"click",

              "name":"OA通訊錄",

              "key":"FS_V1_1005"

           }]

     },

     {

         "name":"風信產品",

 "sub_button":[

          {

              "type":"click",

              "name":"平臺產品",

              "key":"FS_V2_1001"

           },

           {

              "type":"click",

              "name":"領域產品",

              "key":"FS_V2_1002"

           },

           {

              "type":"click",

              "name":"行業產品",

              "key":"FS_V2_1003"

           },

{

              "type":"view",

              "name":"微辦公",

              "url":"https://open.weixin.qq.com/connect/oauth3/authorize?appid=$APPID&redirect_uri=$URL&response_type=code&scope=snsapi_base&state=1#wechat_redirect"

           }]

     },

     {

         "name":"風信娛樂",

 "sub_button":[

          {

              "type":"click",

              "name":"抽獎活動",

              "key":"FS_V3_1001"

           },

           {

              "type":"click",

              "name":"查詢天氣",

              "key":"FS_V3_1002"

           },

           {

              "type":"view",

              "name":"更多活動",

              "url":"http://www.funsing.com/"

           }]

     }]

}

第二步,獲取openId,

public function index() {
        $code = I('get.code');
        $weid = $this->getOpenId($code);
        if ($weid == "") {
            $this->redirect('/Home/Index/login', array(), 0, "waiting...");
        } else {
            $result = json_decode($this->client->IsAccount(array("weId"=>$weid))->IsAccountResult);
            $info = $result->ErrMsg;
            $this->gotoPage($info, $weid);
        }
    }


//通過code取得openid
    public function getOpenId($code) {
        $urlpre = "https://api.weixin.qq.com/sns/oauth3/access_token?appid=".$this->appId."&secret=".$this->appsecret."&grant_type=authorization_code&code=";
        $url = $urlpre.$code;
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        $output = curl_exec($ch);
        curl_close($ch);
        $jsoninfo = json_decode($output, true);
        //$access_token = $jsoninfo["access_token"];
        $openid = $jsoninfo["openid"];
        return $openid;       
    }
向AI問一下細節

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

AI

泸州市| 商河县| 南投市| 海林市| 荣成市| 多伦县| 平陆县| 辉县市| 客服| 仙桃市| 垦利县| 右玉县| 东平县| 宁夏| 吉木萨尔县| 石台县| 新田县| 阳泉市| 逊克县| 钦州市| 宜春市| 枝江市| 桐城市| 和龙市| 时尚| 酒泉市| 于田县| 云南省| 峡江县| 涞水县| 吐鲁番市| 临猗县| 大足县| 依兰县| 潞西市| 阳西县| 石柱| 连云港市| 通州区| 铜鼓县| 蒲江县|