0

我正在使用以下代码。

<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="http" android:host="m.devbee.com" />
    </intent-filter>
 </activity>

我的 Twitter 应用回调 URL 是Callback URL http://m.devbee.com

现在的问题是在调用这个函数之后

@Override
    protected Void doInBackground(Void... params) {

        try {
            Log.i(TAG, "Retrieving request token from Google servers");
            final String url = provider.retrieveRequestToken(consumer, Constants.OAUTH_CALLBACK_URL);
            Log.i(TAG, "Popping a browser with the authorize URL : " + url);
            Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)).setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_NO_HISTORY | Intent.FLAG_FROM_BACKGROUND);
            context.startActivity(intent);
        } catch (Exception e) {
            Log.e(TAG, "Error during OAUth retrieve request token", e);
        }

        return null;
    }

我在浏览器中单击“授权应用程序”按钮,而不是调用我的PrepareRequestTokenActivity活动,而是给出错误提示

Web Page Not avaliable.

为什么没有调用活动。网址都是一样的。

4

1 回答 1

0

当您为 OAuth 身份验证流(request_tokens 方法)请求临时令牌时,它不会返回网页,而是返回一些像 HTTP 请求中的 GET(或 POST)参数一样编写的参数。有关更多详细信息,请参阅相应的文档:https ://dev.twitter.com/docs/api/1/post/oauth/request_token 。此外,您是否按照 Twitter 说明正确验证您的请求(https://dev.twitter.com/docs/auth/authorizing-request)?

于 2012-07-18T17:17:21.993 回答