0

在这里休息菜鸟:

我正在使用来自 ryan bates rails cast #241 的代码

http://railscasts.com/episodes/241-simple-omniauth

我可以很好地与我的用户进行身份验证....

现在我想显示我在views/articles/index.html.erb 页面上发布的最后一条推文......

我只想显示来自这个 REST api 的数据......“https://dev.twitter.com/docs/api/1.1/get/statuses/home_timeline”

如何以最简单的方式更改此代码?

<% title "Articles" %>

<div id="articles">

    <!-- TODO grab my tweets with GET Statuses/home_timeline -->




<% for article in @articles %>
  <h2>
    <%= link_to article.name, article %>
    <span class="comments">(<%= pluralize(article.comments.size, 'comment') %>)</span>
  </h2>
  <div class="created_at">on <%= article.created_at.strftime('%b %d, %Y') %></div>
  <div class="content"><%= simple_format(article.content) %></div>
<% end %>
</div>

<p><%= link_to "New Article", new_article_path %></p>

谢谢你的帮助。

4

1 回答 1

0

你应该在twitter gem上抢购一下:http : //sferik.github.com/twitter/

您可以获取用户的时间线,例如:timeline = Twitter.user_timeline( twitter_username )

于 2012-11-26T02:33:06.200 回答