如何将facebook评论添加到rails应用程序

时间:2013-01-29 13:35:08

标签: ruby-on-rails facebook comments

我有一个简单的博客在ruby on rails上创建,我的模型包括  职位,类别和分类。帖子属于通过分类的许多类别

post.rb

class Post < ActiveRecord::Base
   has_many :categorizations
   has_many :categories, through: :categorizations
  attr_accessible :author, :description, :title, :photo, :category_ids    
end

category.rb

class Category < ActiveRecord::Base
  attr_accessible :name
  has_many :categorizations
  has_many :posts, :through => :categorizations
end

categorization.rb

class Categorization < ActiveRecord::Base
  attr_accessible :category_id, :position, :post_id
  belongs_to :post
  belongs_to :category
end
应用程序中的

无用户模型 我希望能够在帖子模型中添加Facebook评论,这样任何访问我的应用程序的人都可以评论任何帖子,还有一种方式我可以计算具有最高Facebook评论的帖子,以便我可以利用它< / p>

2 个答案:

答案 0 :(得分:4)

阅读this

您只需在应用中包含类似内容

<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=504323752911178";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

Place the code for your plugin wherever you want the plugin to appear on your page.

<div class="fb-comments" data-href="http://example.com" data-width="470" data-num-posts="2"></div>

其中data-href是您帖子的网址

答案 1 :(得分:0)

你可以看看这个宝石,https://github.com/intridea/omniauth 你可以使用这个gem做很多事情,你可以存储在你的数据库中。