1. 程式人生 > >微信訂閱號通過獲取Openid並獲取使用者基本資訊

微信訂閱號通過獲取Openid並獲取使用者基本資訊

我們知道,服務號有獲取使用者基本資訊的介面,通過oauth2.0網頁授權獲取的。

但是認證的訂閱號也有獲取使用者基本資訊的介面了,但是與服務號不同的是,這個需要使用者主動觸發才可以獲得,需要使用者傳送任意關鍵詞或者點選選單。


1、先獲取openid,使用者主動觸發,獲得openid
2、獲取access_token

3、通過這兩個獲取使用者基本資訊,頭像,暱稱等

介面呼叫請求說明
http請求方式: GET

https://api.weixin.qq.com/cgi-bin/user/info?access_token=ACCESS_TOKEN&openid=OPENID&lang=zh_CN

1、獲取openid
先在基本配置伺服器地址填寫下面php檔案路徑,其中php檔案需要修改token

check.php


<?php
define("TOKEN", "xiao");
//用於回覆使用者訊息
function responseMsg(){
    $postStr = $GLOBALS["HTTP_RAW_POST_DATA"];
    if (!empty($postStr)){
        $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
        $fromUsername = $postObj->FromUserName;
        $toUsername = $postObj->ToUserName;
        $MsgT = $postObj->MsgType;
        $time = time();
        //如果使用者發的text型別
        if($MsgT=="text"){
            $key = trim($postObj->Content);
            $fromUsername = $postObj->FromUserName;
            $textTpl = "<xml>
                        <ToUserName><![CDATA[%s]]></ToUserName>
                        <FromUserName><![CDATA[%s]]></FromUserName>
                        <CreateTime>%s</CreateTime>
                        <MsgType><![CDATA[%s]]></MsgType>
                        <Content><![CDATA[%s]]></Content>
                        </xml>"; 
            $msgType = "text";
            $contentStr = "openid是:".$fromUsername;
            $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
            echo $resultStr;
            exit;
        }

        //如果使用者發的event(事件)型別
        if($MsgT=="event"){
            $Event = $postObj->Event;
            if ($Event==subscribe) {
               $contentStr = "歡迎關注";
            }else{
                $contentStr = "希望您下次關注,但您收不到此條訊息了";
            }

            $textTpl = "<xml>
                        <ToUserName><![CDATA[%s]]></ToUserName>
                        <FromUserName><![CDATA[%s]]></FromUserName>
                        <CreateTime>%s</CreateTime>
                        <MsgType><![CDATA[%s]]></MsgType>
                        <Content><![CDATA[%s]]></Content>
                        </xml>"; 
            $Title = $postObj->Title;
            $Description = $postObj->Description;
            $Url = $postObj->Url;
            $msgType = 'text';
            $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
            echo $resultStr;
            exit;
        }
    }else{
            echo "";
            exit;
    }
}

    $echoStr = $_GET["echostr"];
    //如果有$echoStr說明是對接
    if (!empty($echoStr)) {
        //對接規則
        $signature = $_GET["signature"];
        $timestamp = $_GET["timestamp"];
        $nonce = $_GET["nonce"];
        $token = TOKEN;
        $tmpArr = array($token, $timestamp, $nonce);
        sort($tmpArr, SORT_STRING);
        $tmpStr = implode( $tmpArr );
        $tmpStr = sha1( $tmpStr );
        if( $tmpStr == $signature ){
            echo $echoStr;
        }else{
            echo "";
            exit;
        }
    }else{
        responseMsg();
    }
?>

然後去公眾號回覆任意關鍵詞即可。


openid拿到了,該去拿access_token了

也很容易。

介面是:

https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=appid&secret=appsecret

把上面這兩個引數(appid=修改,secret=修改)改成你公眾號的即可,然後開啟公眾號基本配置,ip白名單,然後就可以正常獲取access_token了。


那麼最後一步,就是獲取使用者基本資訊了。

介面呼叫請求說明

http請求方式: GET

https://api.weixin.qq.com/cgi-bin/user/info?access_token=ACCESS_TOKEN&openid=OPENID&lang=zh_CN

把上面兩個值加上去,訪問這個連結即可。