我正在使用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 我需要发推文并检索用户的用户名