當前位置:首頁 » 安卓系統 » android第三方登錄微信

android第三方登錄微信

發布時間: 2022-12-07 03:22:37

『壹』 android 微信第三方登錄怎麼通過code獲取openid

1.登錄公眾賬號設置OAuth2.0
2.設置菜單按鈕URL為OAuth鏈接
3.頁面後台獲取:
public String getopenId() {
HttpServletRequest request = ServletActionContext.getRequest();
HttpServletResponse response = ServletActionContext.getResponse();
response.setContentType("text/html");
String code = request.getParameter("code");
String urlstr = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=<appId>&secret=<secret>&code=" + code + "&grant_type=authorization_code";
JSONObject json;
try {
json = JSONObject.fromObject(HTTPTools.postToGetJson(urlstr));
openId = json.getString("openid");
} catch (Exception e) {
// e.printStackTrace();
return "";
}
return openId;
}

『貳』 第三方微信登錄安卓介面實現

1)在build.gradle的dependencies中添加2、申明應用許可權3、向微信注冊APP4、請求微信授權登錄5、創建WXEntryActivity.java來接收微信的響應事件這里和簽名一樣,很重要,你如果名字錯了,或者包名的位置錯了,都是不能回調的,切記

『叄』 Android微信第三方登錄/支付,沒有走回調

1、要正式簽名的apk,使用debug包貌似無法調動微信
2、清單文件中要注冊微信回調

<activity
android:name=".wxapi.WXEntryActivity"
android:exported="true"
android:label="@string/app_name"
android:launchMode="singleTop"
android:theme="@android:style/Theme.Translucent" />
3、回調的類名,一定要是官網的WXEntryActivity.java。這里很迷,我之前名字是WXPayEntryActivity,因為之前使用了微信支付,就起了這個名字,後續又加入了微信分享,也沒有問題,當我又加入微信登錄之後,就不走回調了,改成WXEntryActivity.java成功走了回調。
4、回調類所在包名,一定要是wxapi:
.wxapi.WXEntryActivity

熱點內容
cmcc路由器手機如何改密碼 發布:2025-03-13 14:58:01 瀏覽:419
linuxpostfix 發布:2025-03-13 14:58:00 瀏覽:697
蘋果手機的wifi密碼怎麼看 發布:2025-03-13 14:30:52 瀏覽:50
php直播開發教程 發布:2025-03-13 14:29:20 瀏覽:911
如何防止女朋友要手機密碼 發布:2025-03-13 14:28:46 瀏覽:891
關系資料庫的概念 發布:2025-03-13 14:20:12 瀏覽:461
linuxrpm卸載 發布:2025-03-13 14:17:45 瀏覽:652
android在線支付 發布:2025-03-13 13:50:21 瀏覽:792
瑞影無損圖片壓縮大師 發布:2025-03-13 13:27:33 瀏覽:452
應用怎樣加密 發布:2025-03-13 13:18:10 瀏覽:674