我希望从原生 android 应用程序登录到使用 Google Oauth2.0 的网页。
我正在寻找客户经理,但我认为它不起作用
AccountManager am = AccountManager.get(this);
Bundle options = new Bundle();
am.getAuthToken(
new Account("t....@gmail.com", "com.google"),// Account retrieved using getAccountsByType()
" some scope?", // Auth scope
options, // Authenticator-specific options
this, // Your activity
new OnTokenAcquired(), // Callback called when a token is successfully acquired
new Handler(new OnError()));
我应该使用什么范围。还是我必须按照不同的方式登录