GoogleApiClient setAccountName 在 Service 中不起作用



我正在尝试使用Google Fit API,并且成功使用了Google的示例应用程序。当我运行它时,它会弹出一个登录窗口,我选择了我的帐户,然后按预期使用 API。

在我的应用中,我必须保持对 API 的持续访问,因此我在服务中启动我的谷歌客户端,并尝试从服务向 Google Fit 数据发出请求。初始化如下所示:

         public class MyService extends Service  {
....
....
....
protected synchronized void buildGoogleApiClient() {
            mGoogleApiClient
                    = new GoogleApiClient.Builder(this)
                    .addConnectionCallbacks(this)
                    .addOnConnectionFailedListener(this)
    // automanage can not be used in Service, so it is disabled.
    //                .enableAutoManage(
    //
    //                /* FragmentActivity */
    //                                  new FragmentActivity(),
    //                        this /* OnConnectionFailedListener */)
                    .addApi(ActivityRecognition.API)
                    .addApi(Fitness.RECORDING_API)
                    .addScope(new Scope(Scopes.FITNESS_ACTIVITY_READ))
                    .addApi(Fitness.HISTORY_API)
                    .addScope(new Scope(Scopes.FITNESS_ACTIVITY_READ_WRITE))
                    .setAccountName("myemail@gmail.com")
                    .build();
        }
.....
.....
}

当我这样做时,我收到以下错误:

 I/fitapi: Google Play services connection failed. Cause: ConnectionResult{statusCode=SIGN_IN_REQUIRED, resolution=PendingIntent{1887aff: android.os.BinderProxy@1cd040cc}, message=null}

显然,.setAccountName(String)没有像错误消息所暗示的那样工作。

我的问题如下:如果 .setAccountName 不起作用,如何从服务登录?

从主活动执行 .enableAutoManage() 是有效的,但它不允许后台进程继续收集健身数据。显然,.enableAutoManage() 在服务中不起作用,因为服务不在 UI 线程上运行。

任何帮助将不胜感激。谢谢。

我想通了。问题是我的软件包名称未在 Google API 控制台上注册。非常常见的错误,调试起来并非微不足道。故事的寓意是什么?请仔细阅读文档和官方指南。

相关内容

  • 没有找到相关文章

最新更新