# Variable: account
• account(): Promise‹ReadonlyWithExtensions‹Account››
包含玩家的账号信息,如 openId、token 等。
example
// 导入账号模块
import { accountSystem } from '@timi/mogs-sdk';
// ...
// 获取账号相关信息
const account = await accountSystem.account;
console.log(account.openId, account.token, account.isNewUser);
1
2
3
4
5
6
2
3
4
5
6
deprecated
该接口不能在重连后自动更新,请使用 getAccount 获取账号相关信息。该接口将在 0.4 版本中移除。
# 返回值:
Promise‹ReadonlyWithExtensions‹Account››
Account
结构
属性 | 类型 | 描述 |
---|---|---|
isNewUser | boolean | 是否新用户 |
openId | string | OpenId |
token | string | Token |
uid? | string | uid |