當前位置:首頁 » 安卓系統 » 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

熱點內容
asp如何購買伺服器 發布:2025-09-18 22:46:24 瀏覽:664
網頁加密代碼 發布:2025-09-18 21:56:12 瀏覽:165
安卓targz解壓 發布:2025-09-18 21:45:58 瀏覽:802
怎麼設置手機屏幕密碼怎麼設置 發布:2025-09-18 21:44:18 瀏覽:819
直線插補演算法 發布:2025-09-18 21:22:49 瀏覽:656
矩陣內的演算法 發布:2025-09-18 20:55:07 瀏覽:573
android網路優化 發布:2025-09-18 20:53:19 瀏覽:219
看交換機配置哪些是默認的 發布:2025-09-18 20:46:59 瀏覽:621
在釘釘上如何獲取自己的密碼 發布:2025-09-18 20:46:12 瀏覽:856
pythonifthenelse 發布:2025-09-18 20:33:19 瀏覽:917