LoginSignup
2
2

More than 5 years have passed since last update.

Rails+MySQLでgem twitterするときの気を付けポイントメモ

Posted at

抜けがちなのでメモ

limit: 8

statusのidを保存するときはbigintにする必要

t.integer :status_id, limit: 8

utf8mb4

絵文字対応するならActiveRecordの設定必要
以下参考
ActiveRecordをutf8mb4で動かす

take(100)

client.search("ほげ")で返るSearchResultsからツイート列を取得するにはtake(100)とかする

client = Twitter::REST::Client.new do |config|
    #...
end
client.search("ほげ").take(100)

また引っかかったらそのうち追記

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2