我如何从oauth 2.0中获得令牌?我有使用者密钥和使用者秘密

时间:2019-08-05 05:30:42

标签: oauth-2.0

我想让令牌传递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

0 个答案:

没有答案