这是我的代码:
@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 列表?
答案 0 :(得分:3)
您在此页面中拥有完整的参考:https://developers.google.com/google-apps/calendar/v3/reference/?hl=pt-PT
例如,如果您想要列出日历,请单击 CalendarList 部分下的列表方法。在那里,您将找到ruby的一些解释,参数,响应和代码示例。
答案 1 :(得分:1)
对于红宝石客户,实际上是在这个地址: http://www.rubydoc.info/github/google/google-api-ruby-client/Google/Apis/CalendarV3/
当我在寻找有关api的更多信息时,我遇到了同样的问题 方法。谷歌似乎只提出他们的文档,而不是红宝石 特定的。