This is my code:
@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'})
My question is: where can I find the list : api_method for google calendar API?
source share