2017 © Pedro Peláez
 

library gotowebinar

The GoToWebinar API wrapper for PHP

image

paravibe/gotowebinar

The GoToWebinar API wrapper for PHP

  • Friday, May 25, 2018
  • by paravibe
  • Repository
  • 1 Watchers
  • 0 Stars
  • 109 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 3533 % Grown

The README.md

GoToWebinar PHP wrapper

Latest Version Build Status Total Downloads, (*1)

Installation

composer require paravibe/gotowebinar, (*2)

How to use

Initialize client

$client = new \LogMeIn\GoToWebinar\Client($access_token, $values);, (*3)

Where $access_token is a token retrived during authorization procedure - https://goto-developer.logmeininc.com/how-get-access-token-and-organizer-key
and $values are response data that contain: * account_key * account_type * email * firstName * lastName * organizer_key, (*4)

Use any method described here https://goto-developer.logmeininc.com/content/gotowebinar-api-reference-v2 by passing proper HTTP method and endpoint to createRequest() method., (*5)

GET/DELETE methods

$get = $client->createRequest('GET', "organizers/{$organizer_key}/webinars")->execute();
$data = $get->getDecodedBody();

POST/PUT methods

$post_data = array(
  'subject' => 'TEST',
  'description' => 'Test API integration',
  'times' => array(
    array(
      'startTime' => '2018-05-12T15:00:00Z',
      'endTime' => '2018-05-12T16:00:00Z',
    )
  ),
  'timeZone' => 'Europe/Kiev',
);

$new = $client->createRequest('POST', "organizers/{$organizer_key}/webinars")
  ->attachBody($post_data)
  ->execute();

The Versions

25/05 2018

dev-master

9999999-dev

The GoToWebinar API wrapper for PHP

  Sources   Download

MIT

The Requires

 

The Development Requires

by Max Petyurenko

gotowebinar logmein gotowebinar api logmein api

10/05 2018

1.0

1.0.0.0

The GoToWebinar API wrapper for PHP

  Sources   Download

MIT

The Requires

 

by Max Petyurenko

gotowebinar logmein gotowebinar api logmein api