我使用facebook评论插件https://developers.facebook.com/docs/plugins/comments/
我网站中的每个页面
我通过从json请求中获取
来显示Facebook评论https://graph.facebook.com/comments/?ids=abc.com/
所以当我更新facebook插件中的评论时,我想在我的网站上获得动态更新的评论
我在控制器中的代码
@fb_res=HTTParty.get('https://graph.facebook.com/comments/?ids=abc.com/')
fb_json=JSON.parse(@fb_res)
@fb_comment = fb_json["abc.com/"]["comments"]["data"].map {|x| [x["from"]["id"],x["message"],x["from"]["name"]]}
我的观点:
<% @fb_comment.each do |fb| %>
<li>
<div class="pic_commnt">
<div class="pic">
<div class="pic_image">
<img src="http://graph.facebook.com/<%= fb[0].to_s %>/picture?type=square" alt="" />
</div>
<span class="pic_name"><%= fb[2].to_s %></span>
</div>
<div class="pic_comments">
<p>
"<%= fb[1].to_s %>"
</p>
</div>
</div>
</li>
<% end %>
我想动态更新此部分