위챗 애플릿 가져오기openid
4774 단어 위챗 애플릿
/**
* --
* openid
*/
onLoad: function (options) {
wx.login({
success: function (res) {
var code = res.code;//
//console.log(code);
wx.request({
url: 'http:// ', // openid
data: {
code: code// code
}
})
},
fail: function () {
callback(false)
}
});
}
뒷부분java에서 Openid 코드 가져오기
/**
* Created by hubo on 2017/11/10
* openid
*/
public class AccessOpenId extends HttpServlet{
/**
* openid
*/
private static final String APPID = ""; // APPID
private static final String APPSECRET = ""; // appsecret
private static final String OPENID_URL = "https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret" +
"=SECRET&js_code=JSCODE&grant_type=authorization_code";// openid
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
String Code = req.getParameter("code"); //
String url = OPENID_URL.replace("APPID",APPID).replace("SECRET",APPSECRET).replace("JSCODE",Code);
JSONObject jsonObject = WeixinUtil.doGetStr(url); // Get
String OpenId = jsonObject.getString("openid"); // openid
}
}
doget 메소드 코드
/**
* get
* @param url
* @return
*/
public static JSONObject doGetStr(String url){
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpGet httpGet = new HttpGet(url);
JSONObject jsonObject = null;
try {
HttpResponse response = httpClient.execute(httpGet);
HttpEntity entity = response.getEntity(); //
if(entity != null){
String result = EntityUtils.toString(entity,"UTF-8");
jsonObject = JSONObject.fromObject(result);
}
} catch (IOException e) {
e.printStackTrace();
}
return jsonObject;
}
가져온opneid는 openid이고 앞부분으로 돌아가면 돼요.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
유니앱, 위챗 애플릿에서 MQTT 사용 문제(1)MQTT.js는 JavaScript로 작성된 MQTT 프로토콜의 클라이언트 라이브러리로 Node에 사용할 수 있습니다.js와 브라우저.노드에서.js단은 전역 설치를 통해 명령행 연결을 사용할 수 있으며 MQTT...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.