3

ListView と単純なデータベースを実装し、特定の Google アカウントからタスクを受け取り、それらを ListView に追加する機会を提供する Android アプリケーションのプログラミングを開始しました。

このチュートリアルTasks APIを使用してコードを実装しましたが、機能せず、Web 上には他のチュートリアルがあまりありません。これが私の Start-Activity のスニペットです。

携帯電話で作成したアカウントは 1 つだけだったので、[アカウントの選択] ダイアログを省略しました。

googleAccountManager = new GoogleAccountManager(RememberMe.this);
Account[] accounts = googleAccountManager.getAccounts();
account = accounts[0];
googleAccountManager.manager.getAuthToken(account, AUTH_TOKEN_TYPE, null, this, new AccountManagerCallback<Bundle>() 
            {
                public void run(AccountManagerFuture<Bundle> future) 
                    {
                        try 
                            {
                                // If the user has authorized your application to use the tasks API
                                // a token is available.
                                String token = future.getResult().getString(AccountManager.KEY_AUTHTOKEN);
                                HttpTransport transport = AndroidHttp.newCompatibleTransport();
                                GoogleAccessProtectedResource googleAccessProtectedResource = new GoogleAccessProtectedResource(token);
                                service = new Tasks(transport, googleAccessProtectedResource, new JacksonFactory());
                                service.setKey("AIzaSyDAnO-UGa_zJnqftSVTHnvoHDp8Tfrmtko");
                                service.setApplicationName("Remember Me");
      
      

                                receivingTasks();
                                // Now you can use the Tasks API...
                                
                            } 
                        catch (OperationCanceledException e) 
                            {
                                // TODO: The user has denied you access to the API, you should handle that
                                Log.w(TAG, "synchronize - Catch OperationCanceled Exception");
                            } 
                        catch (Exception e) 
                            {
                                Log.w(TAG, "synchronize - Catch Exception e");
                            }
                    }
          }, null);

「receiveTasks」メソッドは次のとおりです。

    public void receivingTasks()
    {
        try 
        {
            TaskLists taskLists = service.tasklists.list().execute();
            for (TaskList taskList : taskLists.getItems()) 
            {
                  Log.w(TAG, "" + taskList.getTitle());
            }
        }
        catch (IOException e) 
        {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

すべて正常に動作しています - トークンを取得し、サービス オブジェクトとアカウント オブジェクトがありますが、

TaskLists taskLists = service.tasklists.list().execute();

例外がスローされ、何も起こらないので、TaskLists - オブジェクトが初期化されていないと思いますが、「応答できない」(LogCat) 理由がわかりません。

LogCat は次のとおりです。

11-29 15:57:58.848: W/DefaultRequestDirector(2878): Authentication error: Unable to respond to any of these challenges: {authsub=WWW-Authenticate: AuthSub realm="https://www.google.com/accounts/AuthSubRequest" allowed-scopes="https://www.googleapis.com/auth/tasks,https://www.googleapis.com/auth/tasks.readonly"}

11-29 15:57:58.858: W/System.err(2878): com.google.api.client.http.HttpResponseException: 401 Unauthorized

11-29 15:57:58.858: W/System.err(2878):     at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:669)

11-29 15:57:58.868: W/System.err(2878):     at com.google.api.services.tasks.Tasks$RemoteRequest.execute(Tasks.java:1571)

11-29 15:57:58.868: W/System.err(2878):     at com.google.api.services.tasks.Tasks$Tasklists$List.executeUnparsed(Tasks.java:1277)

11-29 15:57:58.868: W/System.err(2878):     at com.google.api.services.tasks.Tasks$Tasklists$List.execute(Tasks.java:1262)

また、チュートリアルと API の違いはどこにあるのだろうかと思います。このトピックに関するヘルプが他にどこにあるかわからないので、誰かが私を助けてくれれば素晴らしいと思います。どうもありがとう。

4

1 に答える 1

4

同じ問題が発生した場合は、共有設定にトークンを保存し、アプリケーションを起動するたびにトークンを無効にして、アカウント マネージャーのバグにより新しいトークンを生成してみてください。私の問題はこの方法で解決できます: これを参照してください: https://groups.google.com/group/google-tasks-api/browse_thread/thread/6d65116019baf122/81293191c46ebdc6?lnk=gst&q=401#81293191c46ebdc6

于 2011-12-08T09:46:43.480 に答える