基础库 1.12.0 开始支持,低版本需做兼容处理。
打开公众号资料卡,可以通过publicId参数设定需要打开的公众号资料卡的号码,同时game.json中必须配置publicIdList(目前只能配置1个),表明可以打开的公众号资料卡的号码
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
publicId | String | 是 | 公众号资料卡的号码 | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
game.json:
{
"publicIdList":["123456"]
}
index.js:
qq.openPublicProfile({
publicId: '123456',
success (res) {
}
});