Rails プロジェクトに twilio click to call を統合しています。
すべて正常に動作しますが、私の twilio コントローラーの url: が heroku で見つかりません。ただし、ブラウザでナビゲートすると見つけることができます。電話はダイヤルしますが、声は「問題が発生しました。さようなら」と言っています。URL を外部の xml ファイルに変更すると、正常に動作しますが、この特定のファイルが認識されません。したがって、コントローラーなどは正常に機能すると思います。
twillio_controller.rb
def call
@full_phone = current_user.phone
@partial_phone = @full_phone.last(-1)
@connected_number = "+61" + @partial_phone
@client = Twilio::REST::Client.new @@twilio_sid, @@twilio_token
# Connect an outbound call to the number submitted
@call = @client.calls.create(
:from => @@twilio_number,
:to => @connected_number,
:url => 'http://besttradies.herokuapp.com/mytradies/connect.xml', # Fetch instructions from this URL when the call connects
)
@msg = { :message => 'Phone call incoming!', :status => 'ok' }
end
def connect
# Our response to this request will be an XML document in the "TwiML"
# format. Our Ruby library provides a helper for generating one
# of these documents
response = Twilio::TwiML::Response.new do |r|
r.Say 'If this were a real click to call implementation, you would be connected to an agent at this point.', :voice => 'alice'
end
render text: response.text
end