我正在尝试通过 Twilio API 从我的 Rails 应用程序发送 SMS 消息。我正在按照此处的说明进行操作(https://github.com/twilio/twilio-ruby),但我似乎无法弄清楚这一点。
这是我的 Rails 控制器中的代码
require 'twilio-ruby'
account_sid = '[I inserted account_sid here]'
auth_token = '[I inserted auth_token here]'
@client = Twilio::REST::Client.new(account_sid, auth_token)
@client.account.messages.create(
from: '+[number here]',
to: '+[number here]',
body: 'Hey there!'
)
返回以下错误消息(出于简单的隐私原因省略)
NoMethodError .... undefined method `messages' for #<Twilio::REST::Account: ....
任何帮助将不胜感激。谢谢大家!