使用Twilio api如何将验证码发送为短信

时间:2013-05-30 10:42:08

标签: ruby ruby-on-rails-3 twilio

我正在使用twillio api从我的应用程序发送短信。它的工作正常。但我需要将验证码发送为短信来验证他的电话号码,然后需要在我的rails项目中提交注册。

任何人都可以使用twilio来提供示例,以验证代码。

由于

1 个答案:

答案 0 :(得分:1)

这是Twilio的一个例子

require 'rubygems'
require 'twilio-ruby'

account_sid = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
auth_token = 'xxxxxxxxxxxxxxxxxxxxxxxxxxx'
client = Twilio::REST::Client.new account_sid, auth_token

from = '+441702806101' # Your Twilio number

friends = {
'+447908232434' => 'David'
}
friends.each do |key, value|
  client.account.sms.messages.create(
    :from => from,
    :to => key,
    :body => "#{value} you are working 30/04/2013 - CX1"
  ) 
  puts "Sent message to #{value}"
end

参见Ruby中的代码完整教程:

https://www.twilio.com/docs/tutorials/walkthrough/account-verification/ruby/rails

希望这有帮助