Я следую этому учебнику, но я застрял на getAuthToken . Он говорит, что не может решить этот метод
Вот код, который у меня есть:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
AccountManager am = AccountManager.get(this);
Bundle options = new Bundle();
Account[] accounts=am.getAccountsByType("https://www.strava.com/api/v3/");
am.getAuthToken(
accounts, // Account retrieved using getAccountsByType()
"Manage your tasks", // 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
}