获取用户手机号码,一般与发送短信验证码一起使用,用于用户登录,或者验证身份等。
1.首先需要wx.login(),而且这个接口开放给已认证的非个人小程序。
2.使用<button open-type="getPhoneNumber" bindgetphonenumber="getfun_phone" />,授权成功,手机号码还是加密的,会在e.detail返回iv,sessionkey,encryptedData。
3.采用AEC-128-CBC解密。
2023-10-23 14:43:52
获取用户手机号码,一般与发送短信验证码一起使用,用于用户登录,或者验证身份等。
1.首先需要wx.login(),而且这个接口开放给已认证的非个人小程序。
2.使用<button open-type="getPhoneNumber" bindgetphonenumber="getfun_phone" />,授权成功,手机号码还是加密的,会在e.detail返回iv,sessionkey,encryptedData。
3.采用AEC-128-CBC解密。