我是 android 新手,我正在一个 android 应用程序中工作,该应用程序从 android 应用程序共享 twitter 推文,我收到一个错误,retrieveRequestToken raises “Communication with the service provider failed: null”。我从堆栈溢出(http://stackoverflow.com/questions/8534831/method-retrieverequesttoken-raises-communication-with-the-service-provider-fail)得到了解决方案。它说我们将能够通过 StrictMode 解决这个问题。我不知道如何应用这个。
这是马代码:
try {
Log.i(TAG, "Retrieving request token from Google servers");
final String url = provider.retrieveRequestToken(consumer,Constants.OAUTH_CALLBACK_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("Error",e+"");
}
请帮我。提前致谢。