-1

アプリケーションから SMS を送信するために twillio API を使用しています。その正常に動作します。しかし、彼の電話番号を確認するために確認コードをSMSとして送信する必要があり、その後、私のレールプロジェクトから登録を送信する必要があります。

twilio を使用してコードを検証するサンプル例を提供してください。

ありがとう

4

1 に答える 1

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

お役に立てれば

于 2013-05-30T12:11:21.670 に答える