我試圖張貼網址與TIME_ZONE但我面臨着以下問題URL編碼(時區)(紅寶石)
在我的方法,我有:
base_url = "..."
time_zone = "Alaska" # works
#time_zone = "Pacific Time (US & Canada)" # doesn't work
#time_zone = "Pacific%20Time%20(US%20%26%20Canada)" # doesn't work either
#time_zone = "Pacific Time" # doesn't work
@url = "#{base_url}?time_zone=#{time_zone}"
@url = URI.encode(@url)
... # connect here
可用選擇time_zones在這裏http://developer.pagerduty.com/documentation/rest/types#timezone
如果我提供例如「阿拉斯加」,我得到的數據但我需要「太平洋時間(美國&加拿大)」,它不起作用。
我嘗試使用http://meyerweb.com/eric/tools/dencoder/來編碼我的URL,但它也不起作用。
還有什麼我沒有注意到?
編輯: 「太平洋時間」 無法正常工作或
我添加了一些意見,我的答案,這也許能派上用場。 – 7stud
我越想到它,我就越「知道」'(美國和加拿大)'部分只是該時區列表中的評論。否則,不熟悉美國時區的人不知道太平洋時間提及的國家。 – 7stud
是的,這是我一開始想的,但它不是http://developer.pagerduty.com/documentation/rest/types#timezone – nevermind