老熟女激烈的高潮_日韩一级黄色录像_亚洲1区2区3区视频_精品少妇一区二区三区在线播放_国产欧美日产久久_午夜福利精品导航凹凸

重慶分公司,新征程啟航

為企業提供網站建設、域名注冊、服務器等服務

微信登錄代碼java代碼 java接入微信登錄

手機瀏覽器(非微信瀏覽器)怎么使用微信登錄?

嗯 首先先用到pc端非微信瀏覽器使用的二維碼方式接入登陸;

創新互聯專業為企業提供恩平網站建設、恩平做網站、恩平網站設計、恩平網站制作等企業網站建設、網頁設計與制作、恩平企業網站模板建站服務,十年恩平做網站經驗,不只是建網站,更提供有價值的思路和整體網絡服務。

1)首先需要在微信開放平臺注冊,在管理中心創建自己要使用到登陸的應用,并進行認證。

圖1、創建應用并審核通過?

圖2、獲取appid和AppSecret?

圖3、設置后續需要的回調的基本域

2)微信公眾平臺認證這里就不做截圖處理了,基本大體是一樣的。

二、頁面的基本調用和java后臺代碼1)首先獲取code

REDIRECT_URI:掃碼以后回調的地址,這里需要使用 urlEncode 對鏈接進行處理,回調地址必須為上圖3配置的域下code:可以不填

微信瀏覽直接走這個會自動調取微信授權確認。確認以后回跳到配置的回調地址。

2)通過拿到的code獲取access_token

因為換取下一步的令牌需要涉及到跨域請求,但是微信不讓跨域請求,只能在后臺進行后續事項。

后面的操作微信公眾號和微信公眾平臺獲取用戶信息的方式基本一致。但是要分別使用不同的appid和appsecret所以需要在跳轉時帶上一個標識是微信瀏覽器獲取的code還是非微信瀏覽器獲取的code。

直接貼代碼了: 因為微信提供的是get請求,后臺使用http發get直接拼裝url獲取到對應的openid和access_toke 3)通過拿到的openid和access_token繼續調微信的最后一個獲取用戶信息的接口

代碼如下:就這樣拿到了用戶的信息,授權基本完

Java后端小程序微信登錄怎么寫??

其實還蠻簡單的,可以說一搜一大把,下面說下兩種方式。

自行開發

主要就是通過小程序端直接請求登錄獲取到code(登錄憑證)、如果需要獲取用戶手機號則需要再次授權需要iv和encryptedData,注意這里授權兩次,也可以作為一次處理。

(1) 后端接收到小程序端請求的code,進行解密,可以參考微信小程序開發文檔,拿到openId和session_key,這一步如果是已經注冊的用戶可以直接將后臺分配的token一起組成對象存儲到redis中,期限7-30天皆可,先從redis判定這個openId是否已經解析過且已存儲為正式用戶,是則直接返回系統的登錄憑證完成登錄。如果不是就需要走第二步。

(2)通過iv和encryptedData解析獲取用戶的手機號,完成解析后將用戶信息存儲,并一樣存儲到數據庫和redis中,返回憑證。

2. 使用已經集成好的sdk,使用maven項目直接引入對象的jar即可。

舉個栗子?weixin-java-miniapp 可以看下對應的文檔說明,使用已經集成好的方法即可。

如何用java開發微信

說明:

本次的教程主要是對微信公眾平臺開發者模式的講解,網絡上很多類似文章,但很多都讓初學微信開發的人一頭霧水,所以總結自己的微信開發經驗,將微信開發的整個過程系統的列出,并對主要代碼進行講解分析,讓初學者盡快上手。

在閱讀本文之前,應對微信公眾平臺的官方開發文檔有所了解,知道接收和發送的都是xml格式的數據。另外,在做內容回復時用到了圖靈機器人的api接口,這是一個自然語言解析的開放平臺,可以幫我們解決整個微信開發過程中最困難的問題,此處不多講,下面會有其詳細的調用方式。

1.1 在登錄微信官方平臺之后,開啟開發者模式,此時需要我們填寫url和token,所謂url就是我們自己服務器的接口,用WechatServlet.java來實現,相關解釋已經在注釋中說明,代碼如下:

[java]?view plain?copy

package?demo.servlet;

import?java.io.BufferedReader;

import?java.io.IOException;

import?java.io.InputStream;

import?java.io.InputStreamReader;

import?java.io.OutputStream;

import?javax.servlet.ServletException;

import?javax.servlet.http.HttpServlet;

import?javax.servlet.http.HttpServletRequest;

import?javax.servlet.http.HttpServletResponse;

import?demo.process.WechatProcess;

/**

*?微信服務端收發消息接口

*

*?@author?pamchen-1

*

*/

public?class?WechatServlet?extends?HttpServlet?{

/**

*?The?doGet?method?of?the?servlet.?br

*

*?This?method?is?called?when?a?form?has?its?tag?value?method?equals?to?get.

*

*?@param?request

*????????????the?request?send?by?the?client?to?the?server

*?@param?response

*????????????the?response?send?by?the?server?to?the?client

*?@throws?ServletException

*?????????????if?an?error?occurred

*?@throws?IOException

*?????????????if?an?error?occurred

*/

public?void?doGet(HttpServletRequest?request,?HttpServletResponse?response)

throws?ServletException,?IOException?{

request.setCharacterEncoding("UTF-8");

response.setCharacterEncoding("UTF-8");

/**?讀取接收到的xml消息?*/

StringBuffer?sb?=?new?StringBuffer();

InputStream?is?=?request.getInputStream();

InputStreamReader?isr?=?new?InputStreamReader(is,?"UTF-8");

BufferedReader?br?=?new?BufferedReader(isr);

String?s?=?"";

while?((s?=?br.readLine())?!=?null)?{

sb.append(s);

}

String?xml?=?sb.toString();?//次即為接收到微信端發送過來的xml數據

String?result?=?"";

/**?判斷是否是微信接入激活驗證,只有首次接入驗證時才會收到echostr參數,此時需要把它直接返回?*/

String?echostr?=?request.getParameter("echostr");

if?(echostr?!=?null??echostr.length()??1)?{

result?=?echostr;

}?else?{

//正常的微信處理流程

result?=?new?WechatProcess().processWechatMag(xml);

}

try?{

OutputStream?os?=?response.getOutputStream();

os.write(result.getBytes("UTF-8"));

os.flush();

os.close();

}?catch?(Exception?e)?{

e.printStackTrace();

}

}

/**

*?The?doPost?method?of?the?servlet.?br

*

*?This?method?is?called?when?a?form?has?its?tag?value?method?equals?to

*?post.

*

*?@param?request

*????????????the?request?send?by?the?client?to?the?server

*?@param?response

*????????????the?response?send?by?the?server?to?the?client

*?@throws?ServletException

*?????????????if?an?error?occurred

*?@throws?IOException

*?????????????if?an?error?occurred

*/

public?void?doPost(HttpServletRequest?request,?HttpServletResponse?response)

throws?ServletException,?IOException?{

doGet(request,?response);

}

}

1.2 相應的web.xml配置信息如下,在生成WechatServlet.java的同時,可自動生成web.xml中的配置。前面所提到的url處可以填寫例如:http;//服務器地址/項目名/wechat.do

[html]?view plain?copy

?xml?version="1.0"?encoding="UTF-8"?

web-app?version="2.5"

xmlns=""

xmlns:xsi=""

xsi:schemaLocation="

"

servlet

descriptionThis?is?the?description?of?my?J2EE?component/description

display-nameThis?is?the?display?name?of?my?J2EE?component/display-name

servlet-nameWechatServlet/servlet-name

servlet-classdemo.servlet.WechatServlet/servlet-class

/servlet

servlet-mapping

servlet-nameWechatServlet/servlet-name

url-pattern/wechat.do/url-pattern

/servlet-mapping

welcome-file-list

welcome-fileindex.jsp/welcome-file

/welcome-file-list

/web-app

1.3 通過以上代碼,我們已經實現了微信公眾平臺開發的框架,即開通開發者模式并成功接入、接收消息和發送消息這三個步驟。

下面就講解其核心部分——解析接收到的xml數據,并以文本類消息為例,通過圖靈機器人api接口實現智能回復。

2.1 首先看一下整體流程處理代碼,包括:xml數據處理、調用圖靈api、封裝返回的xml數據。

[java]?view plain?copy

package?demo.process;

import?java.util.Date;

import?demo.entity.ReceiveXmlEntity;

/**

*?微信xml消息處理流程邏輯類

*?@author?pamchen-1

*

*/

public?class?WechatProcess?{

/**

*?解析處理xml、獲取智能回復結果(通過圖靈機器人api接口)

*?@param?xml?接收到的微信數據

*?@return??最終的解析結果(xml格式數據)

*/

public?String?processWechatMag(String?xml){

/**?解析xml數據?*/

ReceiveXmlEntity?xmlEntity?=?new?ReceiveXmlProcess().getMsgEntity(xml);

/**?以文本消息為例,調用圖靈機器人api接口,獲取回復內容?*/

String?result?=?"";

if("text".endsWith(xmlEntity.getMsgType())){

result?=?new?TulingApiProcess().getTulingResult(xmlEntity.getContent());

}

/**?此時,如果用戶輸入的是“你好”,在經過上面的過程之后,result為“你也好”類似的內容

*??因為最終回復給微信的也是xml格式的數據,所有需要將其封裝為文本類型返回消息

*?*/

result?=?new?FormatXmlProcess().formatXmlAnswer(xmlEntity.getFromUserName(),?xmlEntity.getToUserName(),?result);

return?result;

}

}

2.2 解析接收到的xml數據,此處有兩個類,ReceiveXmlEntity.java和ReceiveXmlProcess.java,通過反射的機制動態調用實體類中的set方法,可以避免很多重復的判斷,提高代碼效率,代碼如下:

[java]?view plain?copy

package?demo.entity;

/**

*?接收到的微信xml實體類

*?@author?pamchen-1

*

*/

public?class?ReceiveXmlEntity?{

private?String?ToUserName="";

private?String?FromUserName="";

private?String?CreateTime="";

private?String?MsgType="";

private?String?MsgId="";

private?String?Event="";

private?String?EventKey="";

private?String?Ticket="";

private?String?Latitude="";

private?String?Longitude="";

private?String?Precision="";

private?String?PicUrl="";

private?String?MediaId="";

private?String?Title="";

private?String?Description="";

private?String?Url="";

private?String?Location_X="";

private?String?Location_Y="";

private?String?Scale="";

private?String?Label="";

private?String?Content="";

private?String?Format="";

private?String?Recognition="";

public?String?getRecognition()?{

return?Recognition;

}

public?void?setRecognition(String?recognition)?{

Recognition?=?recognition;

}

public?String?getFormat()?{

return?Format;

}

public?void?setFormat(String?format)?{

Format?=?format;

}

public?String?getContent()?{

return?Content;

}

public?void?setContent(String?content)?{

Content?=?content;

}

public?String?getLocation_X()?{

return?Location_X;

}

public?void?setLocation_X(String?locationX)?{

Location_X?=?locationX;

}

public?String?getLocation_Y()?{

return?Location_Y;

}

public?void?setLocation_Y(String?locationY)?{

Location_Y?=?locationY;

}

public?String?getScale()?{

return?Scale;

}

public?void?setScale(String?scale)?{

Scale?=?scale;

}

public?String?getLabel()?{

return?Label;

}

public?void?setLabel(String?label)?{

Label?=?label;

}

public?String?getTitle()?{

return?Title;

}

public?void?setTitle(String?title)?{

Title?=?title;

}

public?String?getDescription()?{

return?Description;

}

public?void?setDescription(String?description)?{

Description?=?description;

}

public?String?getUrl()?{

return?Url;

}

public?void?setUrl(String?url)?{

Url?=?url;

}

public?String?getPicUrl()?{

return?PicUrl;

}

public?void?setPicUrl(String?picUrl)?{

PicUrl?=?picUrl;

}

public?String?getMediaId()?{

return?MediaId;

}

public?void?setMediaId(String?mediaId)?{

MediaId?=?mediaId;

}

public?String?getEventKey()?{

return?EventKey;

}

public?void?setEventKey(String?eventKey)?{

EventKey?=?eventKey;

}

public?String?getTicket()?{

return?Ticket;

}

public?void?setTicket(String?ticket)?{

Ticket?=?ticket;

}

public?String?getLatitude()?{

return?Latitude;

}

public?void?setLatitude(String?latitude)?{

Latitude?=?latitude;

}

public?String?getLongitude()?{

return?Longitude;

}

public?void?setLongitude(String?longitude)?{

Longitude?=?longitude;

}

public?String?getPrecision()?{

return?Precision;

}

public?void?setPrecision(String?precision)?{

Precision?=?precision;

}

public?String?getEvent()?{

return?Event;

}

public?void?setEvent(String?event)?{

Event?=?event;

}

public?String?getMsgId()?{

return?MsgId;

}

public?void?setMsgId(String?msgId)?{

MsgId?=?msgId;

}

public?String?getToUserName()?{

return?ToUserName;

}

public?void?setToUserName(String?toUserName)?{


分享標題:微信登錄代碼java代碼 java接入微信登錄
新聞來源:http://www.xueling.net.cn/article/ddeopgg.html

其他資訊

在線咨詢
服務熱線
服務熱線:028-86922220
TOP
主站蜘蛛池模板: 在线天堂资源WWW在线污 | 最近免费2019中文字幕大全 | 91视频国| 秦岭神树动漫版免费看 | 俄罗斯少妇大屁股xxxxx | 91自拍.com| 欧美大肚子孕妇疯狂作爱视频 | 国产91艳遇在线观看 | 日本欧美大码aⅴ在线播放 亚洲靠逼网站 | 亚洲成人h| 中国女人FREE性HD | 国产中文字幕第一页 | 国产精品一区99 | 中文字幕一区二区三区人妻少妇 | 一区二区视频网站 | xvideos国产在线视频 | 欧洲精品乱码久久久久久 | 免费无码AV污污污在线观看 | 亚洲高清在线免费 | 99久久久无码一区二区三区婷婷 | 国产夜夜操 | 午夜亚洲国产理论片无码片 | 伊人精品视频在线观看 | 中文字幕中文字幕中文字幕亚洲无线 | 狠狠干人人干 | 一区二区三区四区国产精品视频 | 人人草超碰 | 77777亚洲午夜久久多喷 | 亚洲欧美成人A∨在线观看 亚洲一区二区福利视频 | 欧美性感一区二区 | 中文乱码人妻系列一区 | 9xfuli福利视频| 中国av一级片| 欧美欧美在线 | 铠甲勇士第一部52集全 | 黑人40厘米全部进去A片 | 无码任你躁久久久久久老妇 | 91亚洲影院 | 国产视频一区二区三区在线观看 | 我朋友的妈妈在线免费观看 | 欧美国产一区二区三区激情无套 |