使用 Twilio 寶石
這假設你有一個 twilio 帳戶並已購買/預訂了電話號碼……
如果你正在使用 bundler,請將以下行新增到你的 Gemfile 中,以在專案中包含 twilio-ruby
:
gem 'twilio-ruby'
否則在命令列輸入 gem install twilio-ruby
。如果你使用的是系統 Ruby 而不是 ruby-env 等,則可能需要 sudo
。
和程式碼
# Instantiate a Twilio REST client with your account SID and auth token,
# which can be found on your dashboard.
client = Twilio::REST::Client.new("your_account_sid", "your_auth_token")
client.messages.create(from: "+15556667777", to: "+15558883333", body: "Hello, world!")