我目前正在使用Twitter结构框架并试图检索我自己的帐户推文列表。我尝试在线搜索无济于事。文档中的示例显示了如何基于tweetID显示推文。我不要那个。我确实理解REST客户端使用提供的变量建立http连接,并将JSON结果检索回解析等。
这是我目前的代码,成功登录后会显示另一项活动,我想在此处显示我的推文。
a1 = Article(headline='NASA uses Python')
a1.save()
a1.publications.add(p1, p2)
a1.publications.add(p3)
a1.publications.all()
[<Publication: Science News>, <Publication: Science Weekly>, <Publication: The Python Journal>]
我还使用intent
将令牌和密钥传递给下一个活动 public void success(Result<TwitterSession> result) {
// Do something with result, which provides a TwitterSession for making API calls
TwitterSession session = Twitter.getSessionManager().getActiveSession();
TwitterAuthToken authToken = session.getAuthToken();
token = authToken.token;
secret = authToken.secret;
Log.i("token",token);
Log.i("secret",secret);
successNewPage();
}
在新的活动课上,我按照他们的文档推出了这个,
public void successNewPage(){
Intent intent = new Intent(this, LoginSuccess.class);
intent.putExtra("token",token);
intent.putExtra("secret", secret);
startActivity(intent);
}
推文的检索将是:
TwitterAuthConfig authConfig = new TwitterAuthConfig("consumerKey", "consumerSecret");
Fabric.with(this, new TwitterCore(authConfig), new TweetUi());
TwitterCore.getInstance().logInGuest(new Callback() {
public void success(Result appSessionResult) {
//Do the rest API HERE
Bundle extras = getIntent().getExtras();
String bearerToken = extras.getString("token");
try {
fetchTimelineTweet(bearerToken);
} catch (IOException e) {
e.printStackTrace();
}
}
public void failure(TwitterException e) {
Toast.makeText(getApplicationContext(), "Failure =)",
Toast.LENGTH_LONG).show();
}
});
}
我在日志中得到的是:
380-380 / com.example.john.fabric W / System.err:java.io.IOException:指定了无效的端点URL。
我的网址错了吗?或者我在endpointURL中设置的令牌也是错误的? 任何建议将不胜感激。谢谢!
答案 0 :(得分:1)
应该是这种情况,fetchTimelineTweet
函数抛出了消息。这应该是由以下行引起的:URL url = new URL(endPointUrl);
告诉endPointUrl
导致MalformedURLException
编辑:
根据Twitter Dev Page,您应该将其设置为endpointURL:https://dev.twitter.com/rest/reference/get/statuses/user_timeline并将用户屏幕名称作为参数传递。
编辑2 :
我认为你的代码应该是这样的:
private static String fetchTimelineTweet(String endPointUrl, String token) // this line
throws IOException {
HttpsURLConnection connection = null;
try {
URL url = new URL(endPointUrl);
connection = (HttpsURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setDoInput(true);
connection.setRequestMethod("GET");
connection.setRequestProperty("Host", "api.twitter.com");
connection.setRequestProperty("User-Agent", "anyApplication");
connection.setRequestProperty("Authorization", "Bearer " + token); // this line
connection.setUseCaches(false);
String res = readResponse(connection);
Log.i("Response", res);
return new String();
} catch (MalformedURLException e) {
throw new IOException("Invalid endpoint URL specified.", e);
} finally {
if (connection != null) {
connection.disconnect();
}
}
}