#GoToWebinar
This is a project to build a Ruby wrapper for using Citrix's GoToWebinar REST API.
##Requirements
You must have an active GoToWebinar account and a valid access token from the GoToWebinar OAuth flow. Please refer to the authentication and authorization documentation. The OAuth flow will return both the access token and organizer key. Both access token and organizer key are required to use the webinar API.
##Install
It isn't an official repository yet so you can't do the normal gem install route.
gem install go_to_webinar
For now you will need to install from source.
gem install go_to_webinar, :git => 'git://github.com/citrixonline/GoToWebinar-Ruby.git'
##Usage
Please refer to the developer documentation for a complete list of available methods.
@g2w = GoToWebinar::Client.new(oauth_access_token, organizer_key)
@g2w.get_webinar(webinar_key)
##Status
Tests are complete and passing.