#GoToMeeting
This is a project to build a Ruby wrapper for using Citrix's GoToMeeting REST API.
##Requirements
You must have an active GoToMeeting account and a valid access token from the GoToMeeting OAuth flow. Please refer to the authentication and authorization documentation.
##Install
It isn't an official repository yet so you can't do the normal gem install route.
gem install go_to_meeting
For now you will need to install from source.
gem install go_to_meeting, :git => 'git://github.com/citrixonline/GoToMeeting-Ruby.git'
##Usage
Please refer to the developer documentation for a complete list of available methods. Each method returns a HTTParty response object.
@g2m = GoToMeeting::Client.new(oauth_access_token)
@g2m.get_groups
@g2m.get_meeting(meeting_id).parsed_response
or if you want to access response code for request
@g2m.get_meeting(meeting_id).response.code
##Status
All tests are passing.