gpt4 book ai didi

java - Google 端点 - Android GoogleAuthIOException Tic Tac Toe - 删除了 clientIds

转载 作者:行者123 更新时间:2023-11-29 08:52:41 26 4
gpt4 key购买 nike

我下载了 Google Endpoints Tic Tac Toe 示例 - Java 中的服务器代码。

为了快速运行它,我从 API 定义中删除了 clientIds,所以我可以快速看到它在 API Explorer 中运行:

@Api(name = "tictactoe", version = "v1")
public class ScoresV1
{
...

我可以使用 API Explorer 运行以下方法,同时启用 OAuth 并使用我的 gmail 帐户进行身份验证。我可以在调试器中看到为该帐户设置的“用户”对象:

@ApiMethod(name = "scores.list")
@SuppressWarnings("unchecked")
public List<Score> list(@Nullable @Named("limit") String limit,
@Nullable @Named("order") String order, User user)
throws OAuthRequestException, IOException
{
...

然后我继续生成 Android 客户端(仍然删除了 clientIds)。我还下载了 official Android app获取 UI 类和 res 文件(帐户选择器和游戏界面)。

这就是我被困的地方。在真实的 Android 设备上运行时,TictactoeActivity 中的以下代码抛出了 GoogleAuthIOException:

    @Override
protected ScoreCollection doInBackground(Void... unused)
{
ScoreCollection scores = null;
try
{
scores = service.scores().list().execute();
}
catch (IOException e)
{
e.printStackTrace();

异常(exception)情况:

02-21 16:38:47.051: D/TicTacToe(6151): com.google.api.client.googleapis.extensions.android.gms.auth.GoogleAuthIOException
02-21 16:38:47.051: D/TicTacToe(6151): at com.google.api.client.googleapis.extensions.android.gms.auth.GoogleAccountCredential$RequestHandler.intercept(GoogleAccountCredential.java:286)
02-21 16:38:47.051: D/TicTacToe(6151): at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:858)
...

深入研究源代码,我发现 GoogleAuthUtil.getToken() 中的这段代码引发了根异常,这有点无益:

com.google.android.gms.auth.GoogleAuthException: Unknown

现在,我在 ScoreV1.list() 的本地开发服务器上有一个断点,在使用 API Explorer 进行测试时被击中,但 Android 客户端甚至没有击中服务器就失败了。现在,在本地开发服务器上设置了“-a 0.0.0.0”以接受传入连接。我也检查了 URL 是否正确,并且我可以从手机上运行以下 URLChrome 浏览器(它给了我一个 Auth 错误,因为没有设置用户,但没关系):

http://192.168.2.23:8888/_ah/api/tictactoe/v1/score?limit=1&order=1

所以我知道网络正在工作并且手机可以访问它。我还验证了 AndroidManifest.xml 具有以下权限集:

<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />

这是在 TicTacToe.java 中显示我的 URL 和路径的代码:

    public static final String DEFAULT_ROOT_URL = "http://192.168.2.23:8888/_ah/api/";

/**
* The default encoded service path of the service. This is determined when
* the library is generated and normally should not be changed.
*
* @since 1.7
*/
public static final String DEFAULT_SERVICE_PATH = "tictactoe/v1/";

/**
* The default encoded base URL of the service. This is determined when the
* library is generated and normally should not be changed.
*/
public static final String DEFAULT_BASE_URL = DEFAULT_ROOT_URL
+ DEFAULT_SERVICE_PATH;
...

现在,真正让我感到困惑的是,即使我将 DEFAULT_ROOT_URL 更改为随机的东西,比如 5.5.5.5,我也会得到完全相同的 GoogleAuthIOException!当主机无法访问时,我希望得到一个不同的异常......

此外,我尝试将服务器部署到生产环境,并将 URL 重新指向 [myapp].appspot.com 地址 - 结果相同。服务器日志从未记录进来的请求。

事实上,我现在真的卡住了。请帮忙!一百万!

最佳答案

该错误很可能是由于您的 Android 应用程序和 Cloud Endpoints API 之间没有发生授权。

由于我无法完全访问您实际的 Endpoint API 注释和 Android 代码,我建议您仔细查看以下几点:

  • 确保您已使用 clientIdsaudiences 正确注释您的 Cloud Endpoints API。 Android Audience 值与 Web Client Id 的值相同。

  • 确保您已部署更新的 API 并重新生成 Endpoints API 源以包含在您的 Android 应用程序中。

  • 最后,在您的 Android 源代码中,您必须使用 GoogleAccountCredential.usingAudience(...) 构建一个 GoogleAccountCredential 实例,然后在调用端点 API 时使用此凭据对象。例如端点构建器采用 HTTP 传输、GSON 工厂和凭证。不要将最后一个参数(即 Credential)留空。

关于java - Google 端点 - Android GoogleAuthIOException Tic Tac Toe - 删除了 clientIds,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21926709/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com