簡體   English   中英

android twitter4j回調調用主要活動

[英]android twitter4j callback calls main activity

Twitter回調使我返回到主要活動,而不是TwitterActivity,這是我的代碼。 有什么建議嗎?

這是我的清單:

<activity android:name=".TwitterActivity" android:launchMode="singleInstance">
    <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="twitter-callback" />
    </intent-filter>
</activity>

這是我的代碼:

private static final String CALLBACK_URL = "twitter-callback:///";
// Some code
    private void dealWithTwitterResponse(Intent intent) {
        Uri uri = intent.getData();
        if (uri != null && uri.toString().startsWith(CALLBACK_URL)) { // If the user has just logged in
            String oauthVerifier = uri.getQueryParameter("oauth_verifier");

            authoriseNewUser(oauthVerifier);
        }
    }

    @Override
    protected void onNewIntent(Intent intent) {
        super.onNewIntent(intent);
        Log.i(TAG, "New Intent Arrived");
        dealWithTwitterResponse(intent);
    }

    @Override
    protected void onResume() {
        super.onResume();
        Log.i(TAG, "Arrived at onResume");
    }

您可以嘗試使用此回調網址。

  public static final String    OAUTH_CALLBACK_SCHEME   = "x-oauthflow-twitter";
        public static final String  OAUTH_CALLBACK_HOST = "callback";
        public static final String  OAUTH_CALLBACK_URL  = OAUTH_CALLBACK_SCHEME + "://" + OAUTH_CALLBACK_HOST;

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM