获取当前账号信息
QQ mac版本:支持
QQ windows版本:支持
账号信息
属性 | 类型 | 说明 |
---|---|---|
miniProgram | Object | 小程序账号信息 |
plugin | Object | 插件账号信息(仅在插件中调用时包含这一项) |
miniProgram 的结构
属性 | 类型 | 说明 |
---|---|---|
appId | string | 小程序 appId |
envVersion | string | 小程序版本(最低基础库版本:1.50.1.00000): develop(开发板)、trial(体验版)、release(正式版) |
version | string | 线上小程序版本号(最低基础库版本:1.50.1.00000),仅支持在正式版小程序中获取 |
plugin 的结构
属性 | 类型 | 说明 |
---|---|---|
appId | string | 插件 appId |
version | string | 插件版本号 |
const accountInfo = qq.getAccountInfoSync()
console.log(accountInfo.miniProgram.appId) // 小程序 appId
console.log(accountInfo.plugin.appId) // 插件 appId
console.log(accountInfo.plugin.version) // 插件版本号, 'a.b.c' 这样的形式