4

在我的 Android 应用程序中,我(肯定)在其他地方启动了一个appStateClient.updateStateImmediate,其中包含一些数据。但是当回调onStateLoaded 最终触发后,传入的字节为空。& 作为记录,我到达onConnected OK。代码如下所示:

启动负载:

appStateClient.loadState(this, 0);

开始保存:

appStateClient.updateStateImmediate(this, 0, bytes); // bytes have content here

响应 onStateLoaded:

@Override
public void onStateLoaded(int statusCode, int statusKey, byte[] bytes) 
{
    // bytes are null here, statusCode is 7 AKA developer error

在 log cat 中看到这个:

07-18 09:11:09.402: E/Volley(7866): [3530] ip.a: Unexpected response code 403 for https://www.googleapis.com/appstate/v1/states/0
07-18 09:11:09.472: E/Volley(7866): [3530] ip.a: Unexpected response code 403 for https://www.googleapis.com/appstate/v1/states/0
07-18 09:11:09.482: E/LoadStateOp(7866): Error executing operation: Access Not Configured

我在 Google API 页面上完成了整个 APP_ID 生成过程,并且只使用了整数部分。我已经验证我使用的是来自 debug.keystore 的相同 SHA1,eclipse 在 Google API 上用作我的 OAuth SHA1,并且那里的包名称与我的 <manifest package > 标签匹配。

我错过了什么?提前致谢

4

1 回答 1

1

您是否AndroidManifest.xml使用正确的元数据配置了您的?

<meta-data android:name="com.google.android.gms.appstate.APP_ID"
           android:value="@string/APP_ID" />

没有这个,你会得到一个开发者错误。

于 2013-07-25T08:52:41.367 回答