【发布时间】:2013-05-25 14:31:48
【问题描述】:
这是我的代码:
@token = @auth["credentials"]["token"]
client = Google::APIClient.new
client.authorization.access_token = @token
service = client.discovered_api('calendar', 'v3')
@result = client.execute(
:api_method => service.calendar_list.list,
:parameters => {},
:headers => {'Content-Type' => 'application/json'})
我的问题是:在哪里可以找到 Google 日历 API 的 :api_method 列表?
【问题讨论】:
标签: google-calendar-api google-api-ruby-client