wx.addPhoneContact 接口无法使用体验版开发板,都可以正常弹出
线上版本点击没有任何反映
GetLXR() {
var that = this
that.getAuthorize()
wx.addPhoneContact({
firstName:'张三',
mobilePhoneNumber: '13500000011',
success(res) {
},
fail(fail){
}
})
},
getAuthorize: function () {
wx.getSetting({
success: function (res) {
if (!res.authSetting['scope.addPhoneContact']) {
wx.authorize({
scope: 'scope.addPhoneContact',
success: function () {
console.log('授权成功')
},
fail: function () {
console.log('授权失败')
}
})
}
}
})
},
我的“用户隐私保护指引”已经设置更新了,还是没反应,真机调试没问题,请问下还有哪些需要注意点呢?
嗯,确实是隐私协议没完善,感谢!
更新下用户隐私协议然后再试试
看下是不是用户隐私保护指引的问题,前往公众平台(https://mp.weixin.qq.com/ )登录你的小程序 - > 设置 -> 服务内容声明模块 或在代码提审的时候更新或完善。