0

我正在使用 twitter API 进行 android 登录我所做的最后一步是通过此代码在包含 webview 的对话框上打开此 URL

    @Override
protected String doInBackground(Void... params) {
    String url = null;
    try {
        Log.i(TAG, "Retrieving request token from Google servers");
          url = provider.retrieveRequestToken(consumer, Constants.OAUTH_CALLBACK_URL);
        Log.i(TAG, "Popping a browser with the authorize URL : " + url);



    } catch (Exception e) {
        Log.e(TAG, "Error during OAUth retrieve request token", e);
    }


    return url;
}

然后我用这个 URL 打开对话框并登​​录到 twitter 我需要发推文并检索用户的用户名

4

1 回答 1

0

使用TwitterOAuthView获取 accessToken。

于 2013-05-04T13:32:41.510 回答