如何获得没有oauth的user_timeline?

时间:2013-06-17 10:16:57

标签: twitter

我在Twitter API ver.1中使用了这段代码:

$.getJSON('https://api.twitter.com/1/statuses/user_timeline.json?screen_name=' + username + '&count=' + count + '&callback=?', function(data){

然而,Twitter API版。 1.1需要Oauth。

我需要在不登录的情况下访问user_timeline

因为Twitter API ver.1已经退役,还有另一种方法吗?

1 个答案:

答案 0 :(得分:1)

没有好办法直接通过javascript以自定义方式完成。

来自Twitter的官方消息是使用Embedded Timelines

hack来自定义它们,但我不推荐它。

如果您需要自定义设计的时间表,我建议您通过自己的安全后端代码提取数据。