#!/usr/bin/env php

<?php 
/**
 * Super bare-bones test
 */
require __DIR__ . '/setup.php';
require __DIR__ . '/../main.php';
$GS = new GoSquared(array('site_token' => SITE_TOKEN, 'api_key' => API_KEY));
$person = $GS->Person('php-module-test');
$result = $person->identify(array('name' => 'PHP SDK', 'email' => '*****@*****.**', 'props_set' => false));
if (!$result) {
    $GS->debug("Identify failed", E_USER_WARNING);
}
$result = $person->set_properties(array('name' => 'PHP SDK', 'email' => '*****@*****.**', 'props_set' => true));
if (!$result) {
    $GS->debug("Properties failed", E_USER_WARNING);
}
Esempio n. 2
0
#!/usr/bin/env php

<?php 
/**
 * Super bare-bones test
 */
require __DIR__ . '/setup.php';
require __DIR__ . '/../main.php';
$GS = new GoSquared(array('site_token' => SITE_TOKEN, 'api_key' => API_KEY));
$person = $GS->Person();
$result = $person->identify(array('id' => 1, 'name' => 'PHP SDK', 'email' => '*****@*****.**'));
if (!$result) {
    $GS->debug("Identify failed", E_USER_WARNING);
}
$result = $person->set_properties(array('name' => 'PHP SDK', 'email' => '*****@*****.**'));
if (!$result) {
    $GS->debug("Properties failed", E_USER_WARNING);
}