bluemango / screensteps-live-api-php-example

PHP Example code using the ScreenSteps Live API

This URL has Read+Write access

screensteps-live-api-php-example / sslive_include.php
100644 12 lines (10 sloc) 0.441 kb
1
2
3
4
5
6
7
8
9
10
11
12
<?php
// Include ScreenSteps Live class file
require_once('sslive_class.php');
 
// Create ScreenSteps Live object using your domain and API key
//$sslive = new SSLiveAPI('example.screenstepslive.com', 'http');
//$sslive->SetAPIKey('12e5317e88');
 
// Create ScreenSteps Live object using reader account credentials
$sslive = new SSLiveAPI('example.screenstepslive.com', 'http');
$sslive->SetUserCredentials('example', 'example');
?>