我们正在为实现Nexmo API Rails应用程序。 在注册过程中,我们需要从服务器端使用Nexmo API通过发送短信确认码给用户。 但我们并不对此的想法。 我们希望实现此功能只有印度。
我已经使用https://github.com/dotpromo/nexmos宝石,我的代码是:
# Gemfile
gem 'nexmos'
#sms_controller.rb:
class SmsController < ApplicationController
def new
@sms = Sms.new
end
def createclient = ::Nexmos::Message.new('#', '#')
res = client.send_text(from: '+910000000000', to: '+910000000000', text: 'Hello world!')
if res.success?
puts "ok"
else
puts "fail"
end
end
end
我用我的凭据“键”和“秘密”就地的“#”,并从并与我的电话号码代替。 但它没有工作。 即使不提供短信到其它号码后,正在执行的成功块。
任何人都可以指导我们实现这个?