我想要使用下面的代碼來訪問Twilio Rest API以檢索給定日期範圍的傳入呼叫到我的twilio號碼列表。使用Coldfusion11 Twilio Rest API過濾
https://www.twilio.com/docs/api/rest/call
<cfhttp url="https://api.twilio.com/2010-04-01/Accounts/xxxxxxxxxxxxxxxxx/Calls" method="get" resolveurl="no" username="xxxxxx" password="xxxxx1">
<cfhttpparam name="To" type="url" value="myphone">
<cfhttpparam name="StartTime>=" type="url" value="2015-05-01">
<cfhttpparam name="StartTime<" type="url" value="2015-06-01">
</cfhttp>
當我嘗試上述連接,我得到一個 「連接」 的錯誤ColdFusion的。它不喜歡「>」。我也嘗試將StartTime>放入一個變量中,對其執行urlencodedformat(),但它沒有給出所需的結果。
當我查詢一個單獨的日子,它工作正常。
<cfhttp url="https://api.twilio.com/2010-04-01/Accounts/xxxxxxxxxxxxxxxxx/Calls" method="get" resolveurl="no" username="xxxxxx" password="xxxxx1">
<cfhttpparam name="To" type="url" value="myphone">
<cfhttpparam name="StartTime" type="url" value="2015-05-01">
</cfhttp>
基於關Twilio代碼示例(I被引用PHP示例)它出現在變量名可以是開始時間>,開始時間> =,開始時間<,開始時間< =。
「當我翻出2 StartTime> =和StartTime =和StartTime < –
取出後,你還可以嘗試下面的代碼並分享結果: - =「type =」url「value =」2015-05-01「> –
我已更新問題以包含工作代碼。我試過了StartTime>和StartTime <,並且每個人都回來了Connection Error。 – steve