我已经在我的android应用程序中实现了twitter4j,它工作得很好。
但当我使用twitter登录页面登录后,它会要求用户手动输入pin代码。
在twitter4j类中,有一个方法来检索和存储(到sharedpreferences中)oauth和oauth_token_secret。

/**
* Retrieve the oauth_verifier, and store the oauth and oauth_token_secret
* for future API calls.
*/
@Override
protected Void doInBackground(Uri...params) {
        final Uri uri = params[0];
        final String oauth_verifier = uri.getQueryParameter(OAuth.OAUTH_VERIFIER);

        try {
            provider.retrieveAccessToken(consumer, oauth_verifier);

            final Editor edit = prefs.edit();
                    edit.putString(OAuth.OAUTH_TOKEN, consumer.getToken());
                    edit.putString(OAuth.OAUTH_TOKEN_SECRET, consumer.getTokenSecret());
                    edit.commit();

                    String token = prefs.getString(OAuth.OAUTH_TOKEN, "");
                    String secret = prefs.getString(OAuth.OAUTH_TOKEN_SECRET, "");

                    consumer.setTokenWithSecret(token, secret);
                    context.startActivity(new Intent(context,MainAct.class));

                    executeAfterAccessTokenRetrieval();

                    Log.i(TAG, "OAuth - Access Token Retrieved");

                } catch (Exception e) {
                    Log.e(TAG, "OAuth - Access Token Retrieval Error", e);
                }

                return null;
    }

清单-PrepareRequestTokenActivity
<activity android:name=".PrepareRequestTokenActivity" android:launchMode="singleTask">>
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data android:scheme="x-oauthflow-twitter" android:host="callback" />
        </intent-filter>
</activity>

我不明白为什么它不检索OAUTH_TOKENOAUTH_SECRET
如何在不输入密码的情况下进行授权?我做错什么了吗?
请帮帮我。
谢谢你

最佳答案

嘿,这段代码可能有用,

AccessToken accessToken = getAccessToken();

        Configuration conf = new ConfigurationBuilder()
                .setOAuthConsumerKey(TwitterConstants.CONSUMER_KEY)
                .setOAuthConsumerSecret(TwitterConstants.CONSUMER_SECRET)
                .setOAuthAccessToken(accessToken.getToken())
                .setOAuthAccessTokenSecret(accessToken.getTokenSecret())
                .build();

        OAuthAuthorization auth = new OAuthAuthorization(conf,
                conf.getOAuthConsumerKey(), conf.getOAuthConsumerSecret(),
                new AccessToken(conf.getOAuthAccessToken(),
                        conf.getOAuthAccessTokenSecret()));

为了得到accesstoken,
public AccessToken getAccessToken() {
    String token = prefs.getString(OAuth.OAUTH_TOKEN, "");
    String tokenSecret = prefs.getString(OAuth.OAUTH_TOKEN_SECRET, "");

    if (token != null && tokenSecret != null)
        return new AccessToken(token, tokenSecret);
    else
        return null;
}

关于java - Android Twitter4J是否自动检索OAuth和oauth_token_secret?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10618330/

10-10 23:33