PHP Classes

File: login.php

Recommend this page to a friend!
  Classes of Zakir Hyder   Citrix GoToWebinar PHP Library   login.php   Download  
File: login.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Citrix GoToWebinar PHP Library
Manage Webinars using GotoWebinar Citrix API
Author: By
Last change: Update of login.php
Date: 8 days ago
Size: 373 bytes
 

Contents

Class file image Download
<?php
include "citrix.php";

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

//$citrix->pr($organizer_key);

if(!$organizer_key)
{
   
$url = $citrix->auth_citrixonline();
    echo
"<script type='text/javascript'>top.location.href = '$url';</script>";
    exit;
}

$citrix->pr($citrix->get_organizer_key());
$citrix->pr($citrix->get_access_token());