使用 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!")