从Google Play游戏服务存储中获取玩家详细信息

时间:2016-02-13 11:21:58

标签: android api google-play-games

我有一个配置了Google Play Games API的Android游戏。 API工作完美,用户可以登录,使用排行榜,赚取成就等。现在我想访问玩家详细信息,如果可能,如已经登录游戏的电子邮件,姓名,年龄。 我现在正在从应用程序本身这样做,如果我想远程访问这些数据怎么办?

即使没有单独的Player ID,这也可以获得所有连接的玩家详细信息吗?例如,获取通过网络登录的所有用户的列表?

1 个答案:

答案 0 :(得分:1)

从这里开始:https://developers.google.com/games/services/web/api/players/get

您需要使用playerId发送HTTP GET请求

GET https://www.googleapis.com/games/v1/players/playerId

此请求需要具有以下范围的授权

https://www.googleapis.com/auth/games

如果成功,此方法将在响应正文中返回一个Players资源。

以下是播放器资源的JSON模板:

https://developers.google.com/games/services/web/api/players#resource