微信小程序手机号码授权登录

文章目录


一、微信小程序开发

目前个人的小程序无法使用手机号码授权登录,可以使用测试号进行开发

二、使用步骤

1.前端代码

代码如下(示例):

html 复制代码
<button open-type="getPhoneNumber" bindgetphonenumber="getUserPhoneNumber">立即登录</button>
javascript 复制代码
Page({

getUserPhoneNumber(event) {
    if(event.detail.errMsg != "getPhoneNumber:ok") {
      // 授权失败
      return false;
    }
    // 发起请求,进行授权登录
    wx.request({
      url: app.globalData.basePath + '/system/applet/login',
      data: {
        phoneCode: event.detail.code
      },
      method:'POST',
      success: res => {
        console.log(res.data);
        wx.setStorageSync('applet', res.data);
      }
    })
  }
}}

2.后台配置

java 复制代码
# 小程序配置
applet:
  appId: wx53fda****c6b0a3
  appSecret: ade99d6dca77****f52fecd5d35039b5
  grantType: authorization_code

3.后台代码

代码如下(示例):

java 复制代码
package com.ruoyi.system.domain.io;

public class AppletLoginInput {

    private String phoneCode;

    private String iv;

    private String encryptedData;

    public String getPhoneCode() {
        return phoneCode;
    }

    public void setPhoneCode(String phoneCode) {
        this.phoneCode = phoneCode;
    }

    public String getIv() {
        return iv;
    }

    public void setIv(String iv) {
        this.iv = iv;
    }

    public String getEncryptedData() {
        return encryptedData;
    }

    public void setEncryptedData(String encryptedData) {
        this.encryptedData = encryptedData;
    }
}
java 复制代码
package com.ruoyi.system.domain.io;

public class AppletLoginOutput {

    /**
     * token信息
     */
    private String token;

    public String getToken() {
        return token;
    }

    public void setToken(String token) {
        this.token = token;
    }
}
java 复制代码
/**
 * 微信小程序手机号码授权登录
 * @param input
 */
@Anonymous
@PostMapping("/login")
public AppletLoginOutput login(@RequestBody AppletLoginInput input) {
    AppletLoginOutput appletLoginOutput = new AppletLoginOutput();
    // 首先获取最新的token信息
    String tokenParam = "appid=" + appletConfig.getAppId() + "&secret=" + appletConfig.getAppSecret() + "&grant_type=client_credential";
    String tokenResult = HttpUtils.sendGet("https://api.weixin.qq.com/cgi-bin/token", tokenParam);
    JSONObject tokenJSONObject = JSONObject.parseObject(tokenResult);

    // 通过登录信息获取用户的手机号码
    // 获取token 信息
    String body = "{\"code\": \"" + input.getPhoneCode() + "\"}";
    HttpRequest post = HttpUtil.createPost("https://api.weixin.qq.com/wxa/business/getuserphonenumber?access_token=" + tokenJSONObject.getString("access_token"));
    post.header("Content-Type", "application/json");
    post.body(body);
    HttpResponse execute = post.execute();
    AppletResultModel resultModel = JSONObject.parseObject(execute.body(), AppletResultModel.class);
    String jsonString = JSONObject.toJSONString(resultModel);
    System.out.println(jsonString);
    // {"errcode":0,"errmsg":"ok","phone_info":{"countryCode":"86","phoneNumber":"178****3721","purePhoneNumber":"178****3721","watermark":{"appid":"wx53fda****1c6b0a3","timestamp":1754865784}}}
    return appletLoginOutput;
}

总结

人生物语:别哭泣,别叹息。悲伤唤不回逝去的时光。做一个简单的人,看得清世间繁杂却不在心中留下痕迹,保持平常心,简单,快乐。请别把我当傻瓜,有些事不是我不知道,只是我看在眼里,埋在心里。一个人最好记性不要太好,因为回忆越多,幸福感越少。

相关推荐
说私域3 小时前
链动2+1模式AI智能名片S2B2C商城小程序在微商信任重建中的创新应用与价值实现
大数据·人工智能·小程序·私域运营
qq_24218863323 小时前
微信小程序AI象棋游戏开发指南
人工智能·微信小程序·小程序
予你@。19 小时前
UniApp + Vue3 实现 Tab 点击滚动定位(微信小程序)
微信小程序·小程序·uni-app
大黄说说19 小时前
小程序商城哪个平台好?码云数智、有赞、微盟对比
小程序
游戏开发爱好者820 小时前
完整教程:App上架苹果App Store全流程指南
android·ios·小程序·https·uni-app·iphone·webview
潆润千川科技1 天前
中老年同城社交小程序功能梳理与应用分析
小程序
说私域1 天前
数字化运营视角下用户留存体系构建与实践研究——以AI智能客服商城小程序为载体
人工智能·小程序·产品运营·流量运营·私域运营
码云数智-大飞1 天前
小程序商城哪个平台好?小程序商城制作平台深度对比
微信小程序
code袁1 天前
基于Springboot+Vue的家教小程序的设计与实现
vue.js·spring boot·小程序·vue·家教小程序
一 乐1 天前
健身房预约|基于java+ vue健身房预约小程序系统(源码+数据库+文档)
java·vue.js·spring boot·小程序·论文·毕设·健身房预约小程序