我目前正在学习RESTful,我就是这个例子。
URL twitter = new
URL("https://api.twitter.com/1/statuses/user_timeline/$userid.xml?count=1&include_rts=1callback=?");
URLConnection tc = twitter.openConnection();
in = new BufferedReader(new
InputStreamReader(tc.getInputStream()));
String line;
// Write each line in the rectangle.
// Note that we are likely to have more lines than
//rectangle, but
// it's OK
int lineCount = 1;
int yOffset = 20;
while ((line = in.readLine()) != null) {
lineCount++;
System.out.println(line);
}
我遇到的问题是我在书中找到的网址已经过时而且没有使用它。
我是否可以使用Twitter API获取最新的20条推文?
PS:我只是在寻找一个新的URL,没有别的
答案 0 :(得分:0)