LoginSignup
23
19

More than 5 years have passed since last update.

RubyでTwitter APIを使ってツイートする

Posted at

アプリの新規登録

下記にログインし、Create New Appからアプリを新規登録します。

Application settingsのAccess levelをRead onlyからRead and writeに変更しておきます。

Access tokenの取得

Application settings - API Keys - Create my access tokenを選択し、Access tokenを取得します。

Twitter APIにアクセスする為のgemをインストールする

$ gem install twitter

tweetするためのコード

tweet.rb
require 'twitter'

client = Twitter::REST::Client.new do |config|
  config.consumer_key        = "Consumer Keyを入力"
  config.consumer_secret     = "Consumer Secretを入力"
  config.access_token        = "Access Tokenを入力"
  config.access_token_secret = "Access Token Secretを入力"
end

# tweet
client.update("tweet from my app")

23
19
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
23
19