PHPackages                             flipminds/gotowebinar - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. flipminds/gotowebinar

ActiveLibrary[API Development](/categories/api)

flipminds/gotowebinar
=====================

GotoWebinar REST API wrapper. Uses the new api.getgo.com/G2W/rest endpoint

v1.0.3(8y ago)31344MITPHPPHP &gt;=7.1.0

Since Sep 18Pushed 8y ago2 watchersCompare

[ Source](https://github.com/flipminds/gotowebinar)[ Packagist](https://packagist.org/packages/flipminds/gotowebinar)[ RSS](/packages/flipminds-gotowebinar/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (4)Dependencies (1)Versions (5)Used By (0)

GotoWebinar API
===============

[](#gotowebinar--api)

Description
-----------

[](#description)

A simple wrapper around the the [GotoWebinar API](https://goto-developer.logmeininc.com/content/gotowebinar-api-reference).

Install via Composer
--------------------

[](#install-via-composer)

We recommend installing this package with [Composer](http://getcomposer.org/).

Run in your project root:

```
composer require flipminds/gotowebinar:~1.0.0

```

Simple Usage
------------

[](#simple-usage)

```
use FlipMinds\GotoWebinar\GotoWebinar;

$credentials = [
    'username' => ''
    'password' => ''
    'consumerKey' => ''
];

$gtw = new GotoWebinar($credentials);

$webinars = $gtw->getUpcoming();

$key = ''
foreach($webinars as $webinar) {
    if (!$key) $key = $webinar->webinarKey;
}

$result = $gtw->createRegistrant($key, 'firstname','lastname','email);
print_r($result);
```

See the examples folder for more usages examples.

Caching the Authentication Token
--------------------------------

[](#caching-the-authentication-token)

By default GotoWebinar Authentication Tokens are valid for 356 days. Caching the token result in one less round trip to GotoWebinar servers.

You can use the `getAuth()` method call to retrieve an array of data that can be cached. You can use this array as a second argument to the constructor.

You can also set a callback to capture the authentication array after authenticating with GotoWebinar servers.

```
// $auth =  getfromcache()

$gtw = new GotoWebinar($credentials, $auth); // see Above

$gtw->setAuthCallback(function($auth) {
 // save $auth to cache
});

```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 90% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

4

Last Release

3159d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/89b718682abb9c470e8e7e7295073dea7fb1b440ea6d8d77cc94cc51a1aecdbc?d=identicon)[flipminds](/maintainers/flipminds)

---

Top Contributors

[![SunilKJaiswal](https://avatars.githubusercontent.com/u/5298350?v=4)](https://github.com/SunilKJaiswal "SunilKJaiswal (9 commits)")[![jbartfay](https://avatars.githubusercontent.com/u/3373678?v=4)](https://github.com/jbartfay "jbartfay (1 commits)")

---

Tags

api-clientgotowebinarphpapiGoToWebinar

### Embed Badge

![Health badge](/badges/flipminds-gotowebinar/health.svg)

```
[![Health](https://phpackages.com/badges/flipminds-gotowebinar/health.svg)](https://phpackages.com/packages/flipminds-gotowebinar)
```

###  Alternatives

[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k7.6M74](/packages/openai-php-laravel)[mailchimp/transactional

458.9M16](/packages/mailchimp-transactional)[get-stream/stream-chat

A PHP client for Stream Chat (https://getstream.io/chat/)

301.8M2](/packages/get-stream-stream-chat)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
