您好,登錄后才能下訂單哦!
小編給大家分享一下小程序登錄之支付寶授權(quán)的實(shí)現(xiàn)方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
眾所周知,微信小程序是可以通過微信本身授權(quán)后再登錄,平臺可以拿到微信用的的賬號相關(guān)信息,然后保存到數(shù)據(jù)庫中,那么同理在支付寶小程序開發(fā)過程中,登錄功能的設(shè)計(jì)也可以如此
上圖是官方提供的時(shí)序圖,具體看一下流程:
在小程序端獲取 auth_code,目的是獲取用戶授權(quán)碼
把第一步獲取的授權(quán)碼 auth_code 傳到咱們自己的后臺,也就是說后臺需要編寫一個接口,方便小程序端的傳入
var me = this; my.getAuthCode({ scopes: 'auth_user', // 主動授權(quán)(彈框):auth_user,靜默授權(quán)(不彈框):auth_base success: (res) => { if (res.authCode) { // console.log(app.serverUrl + '/login/' + res.authCode); // 調(diào)用自己的服務(wù)端接口,讓服務(wù)端進(jìn)行后端的授權(quán)認(rèn)證 my.httpRequest({ url: app.serverUrl + '/login/' + res.authCode, method: 'POST', header:{ 'content-type': 'application/json' }, dataType: 'json', success: (res) => { // 授權(quán)成功并且服務(wù)器端登錄成功 console.log(res); me.setData({ userInfo: res.data.data }); } }); } }, });
后臺拿到這個 auth_code 之后,需要調(diào)用支付寶的授權(quán)平臺,從而獲取用戶的唯一 token 以及 支付寶的userid,都是唯一的,調(diào)用的接口為 [alipay.system.oauth.token]
獲取到userid后,判斷一下這個userid是否在我們自己的數(shù)據(jù)庫中存在,如果存在,直接獲取信息,并且直接返回用戶對象到前臺;如果不存在,則需要從支付寶授權(quán)平臺再一次去獲取支付寶用戶的信息。
調(diào)用 [alipay.user.info.share],獲取用戶信息,這個用戶對象里包含了大量的用戶真實(shí)信息,具體參考如下
@Autowired private UserService userService; @ApiOperation(value = "統(tǒng)一登錄接口", notes = "支付寶小程序喚起登錄后調(diào)用", httpMethod = "POST") @PostMapping("/login/{authCode}") public IMoocJSONResult items( @ApiParam(name = "authCode", value = "授權(quán)碼", required = true, example = "授權(quán)碼") @PathVariable String authCode) throws Exception { // 1. 服務(wù)端獲取access_token、user_id AlipaySystemOauthTokenResponse response = getAccessToken(authCode); if (response.isSuccess()) { System.out.println("獲取access_token - 調(diào)用成功"); /** * 獲取到用戶信息后保存到數(shù)據(jù) * 1. 如果數(shù)據(jù)庫不存在對用的 alipayUserId, 則注冊 * 2. 如果存在,則獲取數(shù)據(jù)庫中的信息再返回 */ String accessToken = response.getAccessToken(); String alipayUserId = response.getUserId(); System.out.println("accessToken:" + accessToken); System.out.println("alipayUserId:" + alipayUserId); // 2. 查詢該用戶是否存在 Users userInfo = userService.queryUserIsExist(alipayUserId); if (userInfo != null) { // 如果用戶存在,直接返回給前端,表示登錄成功 return IMoocJSONResult.ok(userInfo); } else { // 如果用戶不存在,則通過支付寶api獲取用戶的信息后,再注冊用戶到自己平臺數(shù)據(jù)庫 // 獲取會員信息 AlipayUserInfoShareResponse aliUserInfo = getAliUserInfo(accessToken); if (aliUserInfo != null) { Users newUser = new Users(); newUser.setAlipayUserId(alipayUserId); newUser.setNickname(aliUserInfo.getNickName()); newUser.setRegistTime(new Date()); newUser.setIsCertified(aliUserInfo.getIsCertified().equals("T") ? 1 : 0); newUser.setFaceImage(aliUserInfo.getAvatar()); userService.createUser(newUser); return IMoocJSONResult.ok(newUser); } } } else { System.out.println("獲取access_token - 調(diào)用失敗"); } return IMoocJSONResult.ok(); } // 服務(wù)端獲取access_token、user_id private AlipaySystemOauthTokenResponse getAccessToken(String authCode) throws Exception { AlipayClient alipayClient = new DefaultAlipayClient("https://openapi.alipay.com/gateway.do", APPID, // 1. 填入appid PRIVATE_KEY, // 2. 填入私鑰 "json", "GBK", ALIPAY_PUBLIC_KEY, // 3. 填入公鑰 "RSA2"); AlipaySystemOauthTokenRequest request = new AlipaySystemOauthTokenRequest(); request.setGrantType("authorization_code"); request.setCode(authCode); // 4. 填入前端傳入的授權(quán)碼authCode request.setRefreshToken("201208134b203fe6c11548bcabd8da5bb087a83b"); // 0. 不用管 AlipaySystemOauthTokenResponse response = alipayClient.execute(request); return response; } // 獲取支付寶用戶信息 private AlipayUserInfoShareResponse getAliUserInfo (String accessToken) throws Exception { AlipayClient alipayClient = new DefaultAlipayClient("https://openapi.alipay.com/gateway.do", APPID, // 1. 填入appid PRIVATE_KEY, // 2. 填入私鑰 "json", "GBK", ALIPAY_PUBLIC_KEY, // 3. 填入公鑰 "RSA2"); AlipayUserInfoShareRequest request = new AlipayUserInfoShareRequest(); AlipayUserInfoShareResponse response = alipayClient.execute(request, accessToken); if(response.isSuccess()){ System.out.println("獲取會員信息 - 調(diào)用成功"); return response; } return null; }
拿到的支付寶用戶信息如圖:
最終頁面的展示效果為:
以上是“小程序登錄之支付寶授權(quán)的實(shí)現(xiàn)方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。