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

溫馨提示×

溫馨提示×

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

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

微信小程序調用微信登陸獲取openid及java做為服務端示例

發布時間:2020-10-14 12:13:35 來源:腳本之家 閱讀:211 作者:未來_之路 欄目:編程語言

一、微信小程序
第一步:調用 wx.login獲取code 文檔地址
第二步:判斷用戶是否授權讀取用戶信息 文檔地址
第三步:調用wx.getUserInfo讀取用戶數據 文檔地址
第四步:由于小程序后臺授權域名無法授權微信的域名,所以我們只能通過我們自己的服務器去調用微信服務器去獲取用戶信息,故我們將wx.login獲取code 和 wx.getUserInfo 獲取的encryptedData與iv 通過wx.request 請求傳入后臺

微信小程序調用微信登陸獲取openid及java做為服務端示例

服務器返回的數據:

微信小程序調用微信登陸獲取openid及java做為服務端示例

小程序代碼:

//調用登錄接口,獲取 code 
wx.login({ 
 success: function (res) { 
  wx.getSetting({ 
   success(setRes) { 
    // 判斷是否已授權 
    if (!setRes.authSetting['scope.userInfo']) { 
     // 授權訪問 
     wx.authorize({ 
      scope: 'scope.userInfo', 
      success() { 
       //獲取用戶信息 
       wx.getUserInfo({ 
        lang: "zh_CN", 
        success: function (userRes) { 
         //發起網絡請求 
         wx.request({ 
          url: config.loginWXUrl, 
          data: { 
           code: res.code, 
           encryptedData: userRes.encryptedData, 
           iv: userRes.iv 
          }, 
          header: { 
           "Content-Type": "application/x-www-form-urlencoded" 
          }, 
          method: 'POST', 
          //服務端的回掉 
          success: function (result) { 
           var data = result.data.result; 
           data.expireTime = nowDate + EXPIRETIME; 
           wx.setStorageSync("userInfo", data); 
           userInfo = data; 
          } 
         }) 
        } 
       }) 
      } 
     }) 
    } else { 
     //獲取用戶信息 
     wx.getUserInfo({ 
      lang: "zh_CN", 
      success: function (userRes) { 
       //發起網絡請求 
       wx.request({ 
        url: config.loginWXUrl, 
        data: { 
         code: res.code, 
         encryptedData: userRes.encryptedData, 
         iv: userRes.iv 
        }, 
        header: { 
         "Content-Type": "application/x-www-form-urlencoded" 
        }, 
        method: 'POST', 
        success: function (result) { 
         var data = result.data.result; 
         data.expireTime = nowDate + EXPIRETIME; 
         wx.setStorageSync("userInfo", data); 
         userInfo = data; 
        } 
       }) 
      } 
     }) 
    } 
   } 
  }) 
 } 
}) 

二、java服務端

根據code獲取openid與解碼用戶信息 代碼

所需要的jar包

<dependency> 
  <groupId>org.codehaus.xfire</groupId> 
  <artifactId>xfire-core</artifactId> 
  <version>1.2.6</version> 
</dependency> 
<dependency> 
  <groupId>org.bouncycastle</groupId> 
  <artifactId>bcprov-jdk16</artifactId> 
  <version>1.46</version> 
</dependency> 
/** 
 * 微信小程序信息獲取 
 * 
 * @author zhy 
 */ 
public class WXAppletUserInfo { 
  private static Logger log = Logger.getLogger(WXAppletUserInfo.class); 
   
  /** 
   * 獲取微信小程序 session_key 和 openid 
   * 
   * @author zhy 
   * @param code 調用微信登陸返回的Code 
   * @return 
   */ 
  public static JSONObject getSessionKeyOropenid(String code){ 
    //微信端登錄code值 
    String wxCode = code; 
    ResourceBundle resource = ResourceBundle.getBundle("weixin");  //讀取屬性文件 
    String requestUrl = resource.getString("url"); //請求地址 https://api.weixin.qq.com/sns/jscode2session 
    Map<String,String> requestUrlParam = new HashMap<String,String>(); 
    requestUrlParam.put("appid", resource.getString("appId")); //開發者設置中的appId 
    requestUrlParam.put("secret", resource.getString("appSecret")); //開發者設置中的appSecret 
    requestUrlParam.put("js_code", wxCode); //小程序調用wx.login返回的code 
    requestUrlParam.put("grant_type", "authorization_code");  //默認參數 
     
    //發送post請求讀取調用微信 https://api.weixin.qq.com/sns/jscode2session 接口獲取openid用戶唯一標識 
    JSONObject jsonObject = JSON.parseObject(UrlUtil.sendPost(requestUrl, requestUrlParam)); 
    return jsonObject; 
  } 
   
  /** 
   * 解密用戶敏感數據獲取用戶信息 
   * 
   * @author zhy 
   * @param sessionKey 數據進行加密簽名的密鑰 
   * @param encryptedData 包括敏感數據在內的完整用戶信息的加密數據 
   * @param iv 加密算法的初始向量 
   * @return 
   */ 
  public static JSONObject getUserInfo(String encryptedData,String sessionKey,String iv){ 
    // 被加密的數據 
    byte[] dataByte = Base64.decode(encryptedData); 
    // 加密秘鑰 
    byte[] keyByte = Base64.decode(sessionKey); 
    // 偏移量 
    byte[] ivByte = Base64.decode(iv); 
    try { 
        // 如果密鑰不足16位,那么就補足. 這個if 中的內容很重要 
      int base = 16; 
      if (keyByte.length % base != 0) { 
        int groups = keyByte.length / base + (keyByte.length % base != 0 ? 1 : 0); 
        byte[] temp = new byte[groups * base]; 
        Arrays.fill(temp, (byte) 0); 
        System.arraycopy(keyByte, 0, temp, 0, keyByte.length); 
        keyByte = temp; 
      } 
      // 初始化 
      Security.addProvider(new BouncyCastleProvider()); 
      Cipher cipher = Cipher.getInstance("AES/CBC/PKCS7Padding","BC"); 
      SecretKeySpec spec = new SecretKeySpec(keyByte, "AES"); 
      AlgorithmParameters parameters = AlgorithmParameters.getInstance("AES"); 
      parameters.init(new IvParameterSpec(ivByte)); 
      cipher.init(Cipher.DECRYPT_MODE, spec, parameters);// 初始化 
      byte[] resultByte = cipher.doFinal(dataByte); 
      if (null != resultByte && resultByte.length > 0) { 
        String result = new String(resultByte, "UTF-8"); 
        return JSON.parseObject(result); 
      } 
    } catch (NoSuchAlgorithmException e) { 
      log.error(e.getMessage(), e); 
    } catch (NoSuchPaddingException e) { 
      log.error(e.getMessage(), e); 
    } catch (InvalidParameterSpecException e) { 
      log.error(e.getMessage(), e); 
    } catch (IllegalBlockSizeException e) { 
      log.error(e.getMessage(), e); 
    } catch (BadPaddingException e) { 
      log.error(e.getMessage(), e); 
    } catch (UnsupportedEncodingException e) { 
      log.error(e.getMessage(), e); 
    } catch (InvalidKeyException e) { 
      log.error(e.getMessage(), e); 
    } catch (InvalidAlgorithmParameterException e) { 
      log.error(e.getMessage(), e); 
    } catch (NoSuchProviderException e) { 
      log.error(e.getMessage(), e); 
    } 
    return null; 
  } 
} 

發送請求的代碼

   /** 
* 向指定 URL 發送POST方法的請求 
* 
* @param url 發送請求的 URL 
* @param param 請求參數 
* @return 所代表遠程資源的響應結果 
*/ 
ublic static String sendPost(String url, Map<String, ?> paramMap) { 
   PrintWriter out = null; 
   BufferedReader in = null; 
   String result = ""; 
    
   String param = ""; 
Iterator<String> it = paramMap.keySet().iterator(); 
 
while(it.hasNext()) { 
  String key = it.next(); 
  param += key + "=" + paramMap.get(key) + "&"; 
} 
 
   try { 
     URL realUrl = new URL(url); 
     // 打開和URL之間的連接 
     URLConnection conn = realUrl.openConnection(); 
     // 設置通用的請求屬性 
     conn.setRequestProperty("accept", "*/*"); 
     conn.setRequestProperty("connection", "Keep-Alive"); 
     conn.setRequestProperty("Accept-Charset", "utf-8"); 
     conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"); 
     // 發送POST請求必須設置如下兩行 
     conn.setDoOutput(true); 
     conn.setDoInput(true); 
     // 獲取URLConnection對象對應的輸出流 
     out = new PrintWriter(conn.getOutputStream()); 
     // 發送請求參數 
     out.print(param); 
     // flush輸出流的緩沖 
     out.flush(); 
     // 定義BufferedReader輸入流來讀取URL的響應 
     in = new BufferedReader(new InputStreamReader(conn.getInputStream(), "UTF-8")); 
     String line; 
     while ((line = in.readLine()) != null) { 
       result += line; 
     } 
   } catch (Exception e) { 
    log.error(e.getMessage(), e); 
   } 
   //使用finally塊來關閉輸出流、輸入流 
   finally{ 
     try{ 
       if(out!=null){ 
         out.close(); 
       } 
       if(in!=null){ 
         in.close(); 
       } 
     } 
     catch(IOException ex){ 
       ex.printStackTrace(); 
     } 
   } 
   return result; 
 } 

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

朝阳市| 佛山市| 齐齐哈尔市| 邻水| 东城区| 凌源市| 南投县| 伊春市| 忻州市| 汾西县| 汉中市| 田林县| 宁波市| 大厂| 衡南县| 平定县| 乐至县| 交城县| 黄龙县| 桐庐县| 花垣县| 大理市| 普兰店市| 许昌县| 自治县| 晋州市| 宁安市| 德化县| 横峰县| 获嘉县| 西华县| 莒南县| 沂水县| 海安县| 杭州市| 平定县| 沿河| 平武县| 鹤壁市| 靖州| 乃东县|