向用户发起授权使用收款二维码的请求。
接口名称: "wx.authorize"
接口文档: 《wx.authorize(Object object)》
说明: 需要用户授权使用收款二维码时,对应的参数是scope.receiptQrCode
1// 可以通过 wx.getSetting 先查询一下用户是否授权了 " scope.receiptQrCode " 这个 scope 2wx.getSetting({ 3 success(res) { 4 if (!res.authSetting['scope.receiptQrCode']){ 5 wx.authorize({ 6 scope: 'scope.receiptQrCode', 7 success () { 8 // 用户已经同意小程序使用收款二维码,后续他人向此用户付款时,小程序可以调用 scope.receiptQrCode 9接口调起支付 10 } 11 }) 12 } 13 } 14})