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 をエンコードしようとしましたが、うまくいきません。
私が注意を払っていないことは他にありますか?
編集:「太平洋時間」も機能しません