Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using getAuthToken() to get a Token a then login in a Google App Engine aplication.

It used to work, untill today, i dont know why getAuthToken() is returning null.

I checked the account i pass to it, and it's ok. So I can't imagine what's happening.

private class GetAuthTokenTask extends AsyncTask<Account, Object, String> {
        String TAG="GetAuthTokenTask";
        @Override
        protected String doInBackground(Account... accounts) {
            AccountManager manager = AccountManager.get(getApplicationContext());
            Account account = accounts[0];
            String token = this.buildToken(manager, account);
            manager.invalidateAuthToken(account.type, token);
            return this.buildToken(manager, account);
        }

        private String buildToken(AccountManager manager, Account account) {
            try {

                AccountManagerFuture<Bundle> future = manager.getAuthToken (account, "ah", false, null, null);
                Bundle bundle = future.getResult();
                System.out.println("Token: "+bundle.getString(AccountManager.KEY_AUTHTOKEN) +"\n");
                return bundle.getString(AccountManager.KEY_AUTHTOKEN);
             } catch (OperationCanceledException e) {
                    Log.w(TAG, e.getMessage());
             } catch (AuthenticatorException e) {
                    Log.w(TAG, e.getMessage());
             } catch (IOException e) {
                    Log.w(TAG, e.getMessage());
             }
             return null;
        }

        protected void onPostExecute(String authToken) {
            //Log.i("onPostExecute","GetCookieTask");
            new GetCookieTask().execute(authToken);    
        }
    }

Edit

I found the solution myself:

In the getAuthToken() method I changed the third parameter to true, so it will show a warning in the status bar asking for permission. I don't know why Android didn't ask before, like just after I installed the application.

share|improve this question
4  
You should add your comment as an answer to your own question, rather than an edit! – Nick Johnson Jun 9 '11 at 1:56

1 Answer

The getAuthToken(Account, String, boolean, AccountManagerCallback<Bundle>, Handler) method is deprecated.

Use getAuthToken(Account, String, Bundle, Activity, AccountManagerCallback<Bundle>, Handler) or getAuthToken(Account, String, Bundle, boolean, AccountManagerCallback<Bundle>, Handler) instead.

First one works for me.

Android Documentation

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.