1

此 Twilio API 示例代码在 Rails 3 中不起作用:

#voice_controller.rb

  def reminder
    @postto = BASE_URL + '/directions'

    respond_to do |format|
      format.xml { @postto }
    end
  end

#reminder.xml.builder

xml.instruct!
xml.Response do
xml.Gather(:action => @postto, :numDigits => 1) do
    xml.Say "Hello this is a call from Twilio.  You have an appointment 
        tomorrow at 9 AM."
    xml.Say "Please press 1 to repeat this menu. Press 2 for directions.
        Or press 3 if you are done."
    end
end

有任何想法吗?

Twilio 似乎成功拨打了电话(我可以看到带有我的电话号码、位置等的参数),但随后返回了这个模糊的响应代码:

Completed 406 Not Acceptable in 0ms
4

2 回答 2

3

Twilio 员工在这里。自从发布这个原始问题以来,Rails 发生了很多变化,我想分享您如何使用 Rails 4、Concerns 和 Twilio Ruby gem 来解决这个问题。

在下面的代码示例中,我定义了控制器/controllers/voice_controller.rb并包含了一个名为 Webhookable 的关注点。Webhookable Concern 让我们可以将与 Twilio webhook 相关的逻辑(将 HTTP 响应标头设置为 text/xml、呈现 TwiML、验证请求来自 Twilio 等)封装到单个模块中。

require 'twilio-ruby'

class VoiceController < ApplicationController
  include Webhookable

  after_filter :set_header

  # controller code here

end

关注本身存在/controllers/concerns/webhookable.rb并且相当简单。现在它只是将所有动作的 Content-Type 设置为 text/xml 并提供一种方法来呈现 TwiML 对象。我没有包含验证请求是否来自 Twilio 的代码,但这很容易添加:

module Webhookable
    extend ActiveSupport::Concern

    def set_header
      response.headers["Content-Type"] = "text/xml"
    end

    def render_twiml(response)
      render text: response.text
    end

end

最后,reminder使用 Twilio gem 生成 TwiML 并使用 Concern 将此对象呈现为文本的操作可能如下所示:

  def reminder
    response = Twilio::TwiML::Response.new do |r|
      r.Gather :action => BASE_URL + '/directions', :numDigits => 1 do |g|
        g.Say 'Hello this is a call from Twilio.  You have an appointment 
    tomorrow at 9 AM.'
        g.Say 'Please press 1 to repeat this menu. Press 2 for directions.
    Or press 3 if you are done.'
      end
    end

    render_twiml response
  end
于 2014-01-13T22:42:45.773 回答
2

Twilio 不会在其 requests中发送 Accept HTTP 标头,这会导致 Rails 3 决定它无法使用适当的内容类型进行响应。我认为以下内容将为您解决这个问题:

#voice_controller.rb

  默认提醒
    @postto = BASE_URL + '/directions'

    渲染:content_type => '应用程序/xml'
  结尾
于 2010-10-06T22:21:58.163 回答