I have implemented my own authenticator for Facebook and stored access_token in Accounts Manager.
I have tried all 3 ways to retreive auth_token, but in vain.
In my method, I have started a thread, and in the Threads RUN method, I have tried foll ways:-
authTokenBundle = accountManagerFuture.getResult();
manager.blockingGetAuthToken(accounts[0], "com.facebook", false);
& the way u showed above...
manager.getAuthToken(account, "com.facebook", true, new AccountManagerCallback() {...
But my code gets blocked on all above 3 lines. No exception/error.
I need to get the auth-token in my app.