Twitter公共时间表的宁静问题

时间:2014-07-16 10:01:37

标签: java rest twitter

我目前正在学习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,没有别的

1 个答案:

答案 0 :(得分:0)

Twitter不再提供对公共时间轴的RESTful访问。

所有的请求要求身份验证。

查看他们的API文档https://dev.twitter.com/docs/api/1.1