PHPackages                             wasilak/citrix-go-to-webinar-php - 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. wasilak/citrix-go-to-webinar-php

AbandonedArchivedLibrary[API Development](/categories/api)

wasilak/citrix-go-to-webinar-php
================================

Citrix GoToWebinar API PHP access library.

13.3k2PHP

Since Nov 26Pushed 11y ago1 watchersCompare

[ Source](https://github.com/wasilak/Citrix-GoToWebinar-PHP-Library)[ Packagist](https://packagist.org/packages/wasilak/citrix-go-to-webinar-php)[ RSS](/packages/wasilak-citrix-go-to-webinar-php/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/5e7648656dd86a8b1404e4c8db938b34a25f8e5235ca5d7ab0de986effd5893a/68747470733a2f2f706f7365722e707567782e6f72672f776173696c616b2f6369747269782d676f2d746f2d776562696e61722d7068702f762f737461626c652e737667)](https://packagist.org/packages/wasilak/citrix-go-to-webinar-php) [![Total Downloads](https://camo.githubusercontent.com/8cc6e823d02a189925b7e800c880051b94b627b264ed8413b60e867a66693d54/68747470733a2f2f706f7365722e707567782e6f72672f776173696c616b2f6369747269782d676f2d746f2d776562696e61722d7068702f646f776e6c6f6164732e737667)](https://packagist.org/packages/wasilak/citrix-go-to-webinar-php) [![Latest Unstable Version](https://camo.githubusercontent.com/46eeaecd2926613fd7b5865b1e0895281493e8261ed1241d38d687725dcf48e9/68747470733a2f2f706f7365722e707567782e6f72672f776173696c616b2f6369747269782d676f2d746f2d776562696e61722d7068702f762f756e737461626c652e737667)](https://packagist.org/packages/wasilak/citrix-go-to-webinar-php) [![License](https://camo.githubusercontent.com/8ddf19532fbe3fe88b8266ea0d658b493d4ce70807962f35f4c08c16956f758b/68747470733a2f2f706f7365722e707567782e6f72672f776173696c616b2f6369747269782d676f2d746f2d776562696e61722d7068702f6c6963656e73652e737667)](https://packagist.org/packages/wasilak/citrix-go-to-webinar-php)

Citrix's GoToWebinar PHP Library
================================

[](#citrixs-gotowebinar-php-library)

The GoToWebinar PHP Library is typically used to perform operations like create registrant of webinar, get the login url, list webinars etc. the PHP Library greatly simplifies the process of authentication and authorizing users for your app. This lib needs JSON and CURL PHP extension.

You will need an API key to initialize the Library, which you can obtain from . Apply for Developer Key on [https://developer.citrixonline.com/sdm/set\_app/Production](https://developer.citrixonline.com/sdm/set_app/Production). Be sure to check GoToWebinar as Product API. Then you will see the API key on . If you are not registered, first register yourself on here . Then Apply for Developer Key. Be sure to check GoToWebinar as Product API. Then you will see the API key on .

Installing and Initializing
---------------------------

[](#installing-and-initializing)

To install the PHP Library, extract the downloaded files and copy the citrix.php from the directory to a directory on the server where you will host your app. Then, just include citrix.php wherever you want to use the PHP Library.

You will need an app id to initialize the Library, which you can obtain from your developer profile .

First include the citrix.php in you code. You use the Library by instantiating a new Facebook object with, at a minimum, your app id and app secret:

```
include "citrix.php";

$citrix = new Citrix('API Key');
$organizer_key = $citrix->get_organizer_key();
```

Usage
-----

[](#usage)

To get current Organizer Key

```
$organizer_key = $citrix->get_organizer_key();
```

If Organizer Key is empty, create login url. If not parameter is passed then redirect url will be the current url. If you want to redirect to another url, pass the url on the function. But remember the redirect url must be on the same domain that you created the app for.

```
if(!$organizer_key)
{
	$url = $citrix->auth_citrixonline();
	echo "top.location.href = '$url';";
	exit;
}
```

To Get access token

```
$url = $citrix->get_access_token();
```

I will suggest to save the user's access token and organizer key in Database. So that user does not have to authorize your app every time they user you app/website.

To load access token and organizer key

```
$citrix->set_organizer_key('organizer_key');
$citrix->set_access_token('access_token');
```

Get list of webinars

```
$webinars = $citrix->citrixonline_get_list_of_webinars() ;
```

If you want to get previous webinars along with future webinars pass 1 as parmeter ex citrixonline\_get\_list\_of\_webinars(1).

To create registrant of a webinar - you have to provide webinar id, first name, last name and email.

```
try
{
	$response = $citrix->citrixonline_create_registrant_of_webinar('webinar id', $data = array('first_name' => 'First Name', 'last_name' => 'Lastnmae', 'email'=>'email@email.com')) ;
	$citrix->pr($response);
}catch (Exception $e) {
	$citrix->pr($e->getMessage());
}
```

To get registrants of a webinar

```
try
{
	$webinars = $citrix->get_registrants_of_webinars('webinar id') ;
	$citrix->pr($webinars);
}catch (Exception $e) {
	$citrix->pr($e->getMessage());
}
```

To get particular Webinar info

```
try
{
    $webinar = $citrix->citrixonline_get_webinar('id_of_webinar') ;
    $citrix->pr($webinar);
}catch (Exception $e) {
    $citrix->pr($e->getMessage());
}
```

$citrix-&gt;pr() is Print\_r convenience function. I have created two example files - login.php and api example.php. login.php shows you how to the lib to authorize user with your app. example.php show all api calls.

in order to use with composer, please use following code:
---------------------------------------------------------

[](#in-order-to-use-with-composer-please-use-following-code)

```
{
"require":
    {
        "wasilak/citrix-go-to-webinar-php": "dev-master"
    }
}
```

and then:

```
composer.phar install

```

Contact
-------

[](#contact)

Follow [@jambura.blog](https://www.facebook.com/jambura.blog) on Facebook

### Creators

[](#creators)

[Zakir Hyder](https://github.com/zakir-hyder)
[@jambura.blog](https://www.facebook.com/jambura.blog)

License
-------

[](#license)

Citrix's GoToWebinar PHP Library is available under the MIT license. See the LICENSE file for more info.

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 70% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/e2302a0e6b48de3c492f94a8bbca3ba01d3434b1ca2eb943136de43ea9592ecf?d=identicon)[wasilak](/maintainers/wasilak)

---

Top Contributors

[![wasilak](https://avatars.githubusercontent.com/u/436730?v=4)](https://github.com/wasilak "wasilak (7 commits)")[![zakir-hyder](https://avatars.githubusercontent.com/u/2004937?v=4)](https://github.com/zakir-hyder "zakir-hyder (2 commits)")[![visualex](https://avatars.githubusercontent.com/u/3214697?v=4)](https://github.com/visualex "visualex (1 commits)")

### Embed Badge

![Health badge](/badges/wasilak-citrix-go-to-webinar-php/health.svg)

```
[![Health](https://phpackages.com/badges/wasilak-citrix-go-to-webinar-php/health.svg)](https://phpackages.com/packages/wasilak-citrix-go-to-webinar-php)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35816.3M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

94452.6k6](/packages/botman-driver-telegram)

PHPackages © 2026

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