プライマリカレンダーから空き時間をすべて検索しようとしていますが、パラメータを認識できるようにクエリを取得できません。Google freebusy api call in railsがパラメータを認識しない
私は私のコントローラで:
@freetimes = client.execute(
:api_method => service.freebusy.query,
:parameters => {
'timeMin' => '2013-06-15T17:06:02.000Z',
'timeMax' => '2013-06-29T17:06:02.000Z',
'items' => [{'id' => '[email protected]'}]
},
:headers => {'Content-Type' => 'application/json'})
私が得る応答は次のとおりです。
--- !ruby/object:Google::APIClient::Schema::Calendar::V3::FreeBusyResponse
data:
error:
errors:
- domain: global
reason: required
message: Missing timeMin parameter.
code: 400
message: Missing timeMin parameter.
は、しかしである、それはパラメータを取ったことを示しているが、彼らは、クエリに接続されていませんでした:
--- !ruby/object:Google::APIClient::Result
request: !ruby/object:Google::APIClient::Request
parameters:
timeMin: '2013-06-15T17:06:02.000Z'
timeMax: '2013-06-29T17:06:02.000Z'
items:
- id: [email protected]
これを解決する助けがあれば幸いです!
レスポンスに基づいて解決しました[1] 他のカレンダーメソッドとは違って、正しく渡すためにはJSONにする必要がありました。 [1]:http://stackoverflow.com/questions/7455744/post-json-to-api-using-rails-and-httparty – tristantoye