Twilio发送错误未找到请求的资源/2010-04-01/accounts//messages.json



浏览本课程以构建ROR应用程序并发送Twilio消息以验证人的手机号码。我遇到了"请求的资源/2010-04-01/accounts//messages.json。具有$ SID和令牌的空变量;不确定要验证什么。我尝试了ACCT的测试和生产SID和令牌#。非常感谢您的关注。

initailizer/twilio.rb

    Twilio.configure do |config|
      config.account_sid = ENV['TWILIO_ACCOUNT_SID']
      config.auth_token = ENV['TWILIO_AUTH_TOKEN']
    end

型号/user.rb

def generate_pin
    self.pin = SecureRandom.hex(2)
    self.phone_verified = false
    save
end
def send_pin
@client = Twilio::REST::Client.new
@client.messages.create(
  from: '+15812345678',
  to: self.phone_number,
  body: "Your pin is #{self.pin}"
)
end
def verify_pin(entered_pin)
update(phone_verified: true) if self.pin == entered_pin
end

application.yml

 TWILIO_ACCOUNT_SID: '12345678901234567'
 TWILIO_AUTH_TOKEN: '123434567890123456'
 TWILIO_NUMBER: '+15878551234'

用户控制器

def update_phone_number
     current_user.update_attributes(user_params)
     current_user.generate_pin
     current_user.send_pin
     redirect_to edit_user_registration_path, notice: "Saved!"
   rescue Exception => e
     redirect_to edit_user_registration_path, alert: "#{e.message}"
   end
   def verify_phone_number
     current_user.verify_pin(params[:user][:pin])
     if current_user.phone_verified
       flash[:notice] = "FYi Your phone number is verified"
     else
       flash[:alert] = "Cannot verify your phone number"
     end
     redirect_to edit_user_registration_path
   rescue Exception => e
     redirect_to edit_user_registration_path, alert: "#{e.message}"
   end
   private
     def user_params
       params.require(:user).permit(:phone_number, :pin)
     end

我不确定,但是您可以尝试这个

def send_pin
  account_sid = 'your-account-sid'
  auth_token = 'your-auth-token'
  @client = Twilio::REST::Client.new account_sid, auth_token
  @client.messages.create({
    from: '+15812345678',
    to: self.phone_number,
    body: "Your pin is #{self.pin}"
  })
end

相关内容

最新更新