0

我快疯了,请帮帮我..我一直在关注教程页面,但没有成功,

  • 我已经从 android studio 添加了它们
  • 我启用了 API,
  • 我有带有默认调试密钥库的 SHA1
  • 我创建了一个新的客户端 ID,并在凭据部分创建了一个新密钥。
  • 编译并上传到手机

但似乎没有任何效果。

我收到了这个愚蠢的错误:Connection Result{statusCode=unknown status code 5005, resolution=null}

愚蠢而复杂的开发者控制台..

请帮我

今天它起作用了。可能是错误的包装名称。

解决了

4

1 回答 1

-1

只需更改包名称..这是api客户端

private void buildFitnessClient() {
    fitnessClient = new GoogleApiClient.Builder(context)
            .addApi(Fitness.HISTORY_API)
            .addApi(Fitness.SESSIONS_API)
            .addScope(new Scope(Scopes.FITNESS_BODY_READ_WRITE))
            .addScope(new Scope(Scopes.FITNESS_ACTIVITY_READ_WRITE))
            .addScope(new Scope(Scopes.FITNESS_LOCATION_READ_WRITE))
            .addScope(new Scope(Scopes.FITNESS_NUTRITION_READ_WRITE))
            .addConnectionCallbacks(
                    new GoogleApiClient.ConnectionCallbacks() {
                        @Override
                        public void onConnected(Bundle bundle) {
                            ReferenceWrapper.getInstance(context)
                                    .setApiClient(fitnessClient);
                            ((OnClientConnectListener) context)
                                    .onclientConnected();
                            Log.e("Google fit", "connected");
                        }

                        @Override
                        public void onConnectionSuspended(int i) {
                        }
                    })
            .addOnConnectionFailedListener(
                    new GoogleApiClient.OnConnectionFailedListener() {
                        // Called whenever the API client fails to connect.
                        @Override
                        public void onConnectionFailed(
                                ConnectionResult result) {
                            if (!result.hasResolution()) {
                                GooglePlayServicesUtil.getErrorDialog(
                                        result.getErrorCode(), context, 0)
                                        .show();
                                return;
                            }
                            if (!authInProgress) {
                                try {
                                    authInProgress = true;
                                    result.startResolutionForResult(
                                            context,
                                            KeyConstant.REQUEST_OAUTH);
                                } catch (IntentSender.SendIntentException e) {
                                }
                            }
                        }
                    }).build();
}
于 2015-10-14T08:19:40.450 回答