我想让令牌传递api以获得响应,所以请在这个问题上帮助我。
我尝试了许多示例,但没有人能像这样正常工作 在此示例中,OnError显示无法解析符号,而在myAccount中我必须通过什么。
AccountManager am = AccountManager.get(this);
Bundle options = new Bundle();
am.getAuthToken(
myAccount_, // Account retrieved using getAccountsByType()
"read-only",// Auth scope
options, // Authenticator-specific options
this, // Your activity
new OnTokenAcquired(), // Callback called when a token is successfully acquired
new Handler(new OnError())); // Callback called if an error occurs