1
我在我的Rails應用中使用twilio服務。我跟着這個tutorial。但是在我運行該應用程序後,該消息被髮送到我的twilio帳戶,但我沒有收到任何消息給我的手機,除了鏈接中的代碼。我只是說這個代碼在我的routes.rb:不能從手機接收短信
Sms::Application.routes.draw do
get "send/sms"
root 'send#sms'
end
發送控制器代碼:
class SendController < ApplicationController
def sms
require 'rubygems'
require 'twilio-ruby'
@account_sid = 'AC6'
@auth_token = '2bf'
@client = Twilio::REST::Client.new(@account_sid, @auth_token)
@client.account.sms.messages.create(:from => '(954) 740-8336',:to => '+919884667438',:body => 'Hey there!')
end
end
和我收到的短信行動的html文件contails這樣的:
Your message was successfully sent .
根據您提供的信息,沒有可能的診斷方法。 –
@DaveNewton。抱歉,我現在編輯了這個問題。 – John
會發生什麼?控制檯或客戶端是否有錯誤?等http://www.twilio.com/docs/ruby/install,http://www.twilio.com/docs/api/rest等提供了診斷問題的方法。 –