獲取微信OpenId

獲取微信OpenId

  • 先獲取code
  • 再通過(guò)code獲取authtoken宾抓,從authtoken中取出openid給前臺(tái)
  • 微信端一定不要忘記設(shè)定網(wǎng)頁(yè)賬號(hào)中的授權(quán)回調(diào)頁(yè)面域名

流程圖如下

image
image

主要代碼

頁(yè)面js代碼

/* 寫(xiě)cookie */
function setCookie(name, value) {
    var Days = 30;
    var exp = new Date();
    exp.setTime(exp.getTime() + Days * 24 * 60 * 60 * 1000);
    document.cookie = name + "=" + escape(value) + ";expires=" + exp.toGMTString() + ";path=/";
}
/* 讀cookie */
function getCookie(name) {
    var arr = document.cookie.match(new RegExp("(^| )" + name + "=([^;]*)(;|$)"));
    if (arr != null) {
        return unescape(arr[2]);
    }
    return null;
}

/* 獲取URL參數(shù) */
function getUrlParams(name) {
    var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
    var r = window.location.search.substr(1).match(reg);
    if (r != null) {
        return unescape(r[2]);
    }
    return null;
}

/* 獲取openid */
function getOpenId(url) {
    var openid = getCookie("usropenid");
    if (openid == null) {
        openid = getUrlParams('openid');
        alert("openid="+openid);
        if (openid == null) {
            window.location.href = "wxcode?url=" + url;
        } else {
            setCookie("usropenid", openid);
        }
    }
}

WxCodeServlet代碼

//訪問(wèn)微信獲取code
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp)
        throws ServletException, IOException {
    String state = req.getParameter("url");
    //WxOpenIdServlet的地址
    String redirect ="http://"+Configure.SITE+"/wxopenid";
    redirect = URLEncoder.encode(redirect, "utf-8");
    StringBuffer url = new StringBuffer("https://open.weixin.qq.com/connect/oauth2/authorize?appid=")
            .append(Configure.APP_ID).append("&redirect_uri=").append(redirect)
            .append("&response_type=code&scope=snsapi_base&state=").append(state).append("#wechat_redirect");
    resp.sendRedirect(url.toString());
}  

WxOpenIdServlet代碼

//訪問(wèn)微信獲取openid
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp)
        throws ServletException, IOException {
    String code = req.getParameter("code");
    String state = req.getParameter("state");
    Result ret = new Result();
    AuthToken token = WXUtil.getAuthToken(code);
    if(null != token.getOpenid()){
        ret.setCode(0);
        log.info("====openid=="+token.getOpenid());
        Map<String,String> map = new HashMap<String,String>();
        map.put("openid", token.getOpenid());
        map.put("state", state);
        ret.setData(map);
    }else{
        ret.setCode(-1);
        ret.setMsg("登錄錯(cuò)誤");
    }
    String redUrl = state+"?openid="+token.getOpenid();
    resp.sendRedirect(redUrl);
}  

獲取AuthToken(WXUtil.getAuthToken(code))代碼

public static AuthToken getAuthToken(String code){
    AuthToken vo = null;
    try {
        String uri = "https://api.weixin.qq.com/sns/oauth2/access_token?";
        StringBuffer url = new StringBuffer(uri);
        url.append("appid=").append(Configure.APP_ID);
        url.append("&secret=").append(Configure.APP_SECRET);
        url.append("&code=").append(code);
        url.append("&grant_type=").append("authorization_code");
        HttpURLConnection conn = HttpClientUtil.CreatePostHttpConnection(url.toString());
        InputStream input = null;
        if (conn.getResponseCode() == 200) {
            input = conn.getInputStream();
        } else {
            input = conn.getErrorStream();
        }
        vo = JSON.parseObject(new String(HttpClientUtil.readInputStream(input),"utf-8"),AuthToken.class);
    } catch (Exception e) {
        log.error("getAuthToken error", e);
    }
    return vo;
}

HttpClientUtil類

package com.huatek.shebao.util;

import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.ProtocolException;
import java.net.URL;

public class HttpClientUtil {

    // 設(shè)置body體
    public static void setBodyParameter(String sb, HttpURLConnection conn)
            throws IOException {
        DataOutputStream out = new DataOutputStream(conn.getOutputStream());
        out.writeBytes(sb);
        out.flush();
        out.close();
    }

    // 添加簽名header
    public static HttpURLConnection CreatePostHttpConnection(String uri) throws MalformedURLException,
            IOException, ProtocolException {
        URL url = new URL(uri);
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        conn.setUseCaches(false);
        conn.setDoInput(true);
        conn.setDoOutput(true);
        conn.setRequestMethod("POST");
        conn.setInstanceFollowRedirects(true);
        conn.setConnectTimeout(30000);
        conn.setReadTimeout(30000);
        conn.setRequestProperty("Content-Type","application/json");
        conn.setRequestProperty("Accept-Charset", "utf-8");
        conn.setRequestProperty("contentType", "utf-8");
        return conn;
    }

    public static byte[] readInputStream(InputStream inStream) throws Exception {
        ByteArrayOutputStream outStream = new ByteArrayOutputStream();
        byte[] buffer = new byte[1024];
        int len = 0;
        while ((len = inStream.read(buffer)) != -1) {
            outStream.write(buffer, 0, len);
        }
        byte[] data = outStream.toByteArray();
        outStream.close();
        inStream.close();
        return data;
    }

}

封裝AuthToken的VO類

package com.huatek.shebao.wxpay;

public class AuthToken {
    private String access_token;
    private Long expires_in;
    private String refresh_token;
    private String openid;
    private String scope;
    private String unionid;
    private Long errcode;
    private String errmsg;
    public String getAccess_token() {
        return access_token;
    }
    public void setAccess_token(String access_token) {
        this.access_token = access_token;
    }
    public Long getExpires_in() {
        return expires_in;
    }
    public void setExpires_in(Long expires_in) {
        this.expires_in = expires_in;
    }
    public String getRefresh_token() {
        return refresh_token;
    }
    public void setRefresh_token(String refresh_token) {
        this.refresh_token = refresh_token;
    }
    public String getOpenid() {
        return openid;
    }
    public void setOpenid(String openid) {
        this.openid = openid;
    }
    public String getScope() {
        return scope;
    }
    public void setScope(String scope) {
        this.scope = scope;
    }
    public String getUnionid() {
        return unionid;
    }
    public void setUnionid(String unionid) {
        this.unionid = unionid;
    }
    public Long getErrcode() {
        return errcode;
    }
    public void setErrcode(Long errcode) {
        this.errcode = errcode;
    }
    public String getErrmsg() {
        return errmsg;
    }
    public void setErrmsg(String errmsg) {
        this.errmsg = errmsg;
    }
}


有不明白的同學(xué)歡迎留言!

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末豫喧,一起剝皮案震驚了整個(gè)濱河市石洗,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌紧显,老刑警劉巖讲衫,帶你破解...
    沈念sama閱讀 210,914評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異孵班,居然都是意外死亡涉兽,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評(píng)論 2 383
  • 文/潘曉璐 我一進(jìn)店門篙程,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)枷畏,“玉大人,你說(shuō)我怎么就攤上這事虱饿∮倒睿” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,531評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵氮发,是天一觀的道長(zhǎng)渴肉。 經(jīng)常有香客問(wèn)我,道長(zhǎng)折柠,這世上最難降的妖魔是什么宾娜? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,309評(píng)論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮扇售,結(jié)果婚禮上前塔,老公的妹妹穿的比我還像新娘。我一直安慰自己承冰,他們只是感情好华弓,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著困乒,像睡著了一般寂屏。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,730評(píng)論 1 289
  • 那天迁霎,我揣著相機(jī)與錄音吱抚,去河邊找鬼。 笑死考廉,一個(gè)胖子當(dāng)著我的面吹牛秘豹,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播昌粤,決...
    沈念sama閱讀 38,882評(píng)論 3 404
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼既绕,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了涮坐?” 一聲冷哼從身側(cè)響起凄贩,我...
    開(kāi)封第一講書(shū)人閱讀 37,643評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎袱讹,沒(méi)想到半個(gè)月后疲扎,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,095評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡廓译,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評(píng)論 2 325
  • 正文 我和宋清朗相戀三年评肆,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片非区。...
    茶點(diǎn)故事閱讀 38,566評(píng)論 1 339
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡瓜挽,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出征绸,到底是詐尸還是另有隱情久橙,我是刑警寧澤,帶...
    沈念sama閱讀 34,253評(píng)論 4 328
  • 正文 年R本政府宣布管怠,位于F島的核電站淆衷,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏渤弛。R本人自食惡果不足惜祝拯,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望她肯。 院中可真熱鬧佳头,春花似錦、人聲如沸晴氨。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,715評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)籽前。三九已至亭珍,卻和暖如春敷钾,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背肄梨。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,945評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工阻荒, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人峭范。 一個(gè)月前我還...
    沈念sama閱讀 46,248評(píng)論 2 360
  • 正文 我出身青樓财松,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親纱控。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容