1

我正在尝试从 Twitter gem 中制作 Twitter::Tweet 类。我得到了这个错误

undefined method `id' for #<Fabrication::Schematic::Runner:0x00000102da7c28>

这是我的制造商。

Fabricator(:twitter_tweet, from: 'Twitter::Tweet', class_name: 'Twitter::Tweet') do
    id "1"
    text "tweet"
    created_at Time.now
    user {
        id "created_by_social_id"
        name "name"
        location "location"
    }
    entites {
        user_mentions nil
    }
end

但我可以像这样手动创建它。

tweet = Twitter::Tweet.new(:id => "1", 
      :created_at => Time.now.to_s,
      :text => "text",
      :user => {
        :id => "created_by_social_id",
        :name => "name",
        :location => "location"
      }, 
      :entities => {:user_mentions => user_mentions})

我错过了什么明显的东西吗?

4

1 回答 1

1

推特

我认为您对如何使用Twittergem 创建推文感到困惑:

client.update("I'm tweeting with @gem!")

这就是您可以创建新推文的方式。这是基于您已经初始化对象并与变量关联的想法client

#config/initializers/twitter.rb
client = Twitter::REST::Client.new do |config|
  config.consumer_key    = "YOUR_CONSUMER_KEY"
  config.consumer_secret = "YOUR_CONSUMER_SECRET"
end

代码

虽然不是 using 的直接答案fabrication,但我建议您必须调整语法以适应此 gem 的加载(连接到 Twitter API),然后使用fabrication对其进行排序

于 2014-02-15T12:06:52.800 回答