使用“Google Play Api Client Library for Java”时,Google Play Api默认为“仅限我”

使用“Google Play Api Client Library for Java”时,Google Play Api默认为“仅限我”,java,google-play-services,google-play-games,Java,Google Play Services,Google Play Games,Google+应用程序可见性一直切换到“只有我”状态,使得排行榜没有得分 我正在桌面、Android和iOS项目中通过以下链接使用Google Play Developer API Client Library for Java: 在测试和生产过程中,与API调用相关的一切工作正常。唯一的问题似乎是,在上个月的可见性设置已切换,我找不到任何信息,为什么这应该是 如果我在Google+中手动将应用程序可见性设置为public,然后注销并使用该应用程序登录,则可见性将重置为仅限我 应用程序正在请求以

Google+应用程序可见性一直切换到“只有我”状态,使得排行榜没有得分

我正在桌面、Android和iOS项目中通过以下链接使用Google Play Developer API Client Library for Java:

在测试和生产过程中,与API调用相关的一切工作正常。唯一的问题似乎是,在上个月的可见性设置已切换,我找不到任何信息,为什么这应该是

如果我在Google+中手动将应用程序可见性设置为public,然后注销并使用该应用程序登录,则可见性将重置为仅限我

应用程序正在请求以下作用域:

/** View and manage its own configuration data in your Google Drive. */
  public static final String DRIVE_APPDATA = "https://www.googleapis.com/auth/drive.appdata";

  /** Share your Google+ profile information and view and manage your game activity. */
  public static final String GAMES = "https://www.googleapis.com/auth/games";

  /** Know your basic profile info and list of people in your circles.. */
  public static final String PLUS_LOGIN = "https://www.googleapis.com/auth/plus.login";
我正在使用最新版本的库。作用域直接来自gamescopes.java文件,该文件是库的一部分

对用户特定appdata的驱动器访问工作正常

对于那些好奇的人,该应用程序的桌面版本可从以下网站获得: -

该应用程序的android版本可从以下网站获得:
-

您可以在about google+中找到许多google api java客户端示例。检查它是否有效。API是基于这些示例使用的。这并不能解释为什么设置默认为仅限我。