2016-11-28 72 views
0

上午使用twilio進行電話會議,當用戶輸入訪問代碼時,呼叫將會連接。但用戶需要一段時間才能進入訪問,呼叫將自動結束。那麼是否有可能延長輸入訪問代碼的時間?Twilio是否可以延長輸入訪問代碼的時間?

這是如何獲取連接呼叫的訪問代碼。

def voice 
twiml = Twilio::TwiML::Response.new do |r| 
    r.Say "Please enter access code" 
    r.Gather action: "connect" do |g| 

    end 
end 
render xml: twiml.to_xml 
end 

回答

1

添加等待持續時間,直到按下鍵。請參閱以下鏈接以瞭解關於在twilio中收集。 https://www.twilio.com/docs/api/twiml/gather#attributes-timeout

def voice 
    twiml = Twilio::TwiML::Response.new do |r| 
    r.Say "Please enter access code" 
    r.Gather timeout: '30', action: "connect" do |g| 
    end 
    end 
render xml: twiml.to_xml 
end 
相關問題