diff --git a/docs/univerify.md b/docs/univerify.md index 8a20a90f78014acd10e8e922656d8edeee9a5106..8432c43be9e8f1642db717c890ddd731b918dd57 100644 --- a/docs/univerify.md +++ b/docs/univerify.md @@ -418,8 +418,6 @@ exports.main = async (event, context) => { const res = await uniCloud.getPhoneNumber({ appid: '_UNI_ABCDEFG', // 替换成自己开通一键登录的应用的DCloud appid provider: 'univerify', - apiKey: 'xxx', // HBuilderX 3.94及以上版本可以不传此参数,部分模板/插件的旧版本仍会检查配置 - apiSecret: 'xxx', // HBuilderX 3.94及以上版本可以不传此参数,部分模板/插件的旧版本仍会检查配置 access_token: event.access_token, openid: event.openid }) @@ -483,8 +481,6 @@ exports.main = async(event) => { const res = await uniCloud.getPhoneNumber({ provider: 'univerify', appid: 'xxx', // DCloud appid,不同于callFunction方式调用,使用云函数Url化需要传递DCloud appid参数!!! - apiKey: 'xxx', // HBuilderX 3.94及以上版本可以不传此参数,部分模板/插件的旧版本仍会检查配置 - apiSecret: 'xxx', // HBuilderX 3.94及以上版本可以不传此参数,部分模板/插件的旧版本仍会检查配置 access_token: access_token, openid: openid }) @@ -559,8 +555,6 @@ exports.main = async(event) => { const res = await uniCloud.getPhoneNumber({ provider: 'univerify', appid: 'xxx', // DCloud appid,不同于callFunction方式调用,使用云函数Url化需要传递DCloud appid参数 - apiKey: 'xxx', // HBuilderX 3.94及以上版本可以不传此参数,部分模板/插件的旧版本仍会检查配置 - apiSecret: 'xxx', // HBuilderX 3.94及以上版本可以不传此参数,部分模板/插件的旧版本仍会检查配置 access_token: access_token, openid: openid })