19 lines
440 B
PHP
19 lines
440 B
PHP
<?php
|
|
include_once('def.php');
|
|
include('wrenchboard_class.php');
|
|
$wrenchboard = new wrenchboard_class();
|
|
|
|
|
|
|
|
$data['sessionid'] = rand(10000,99999)."A".rand(10000,99999); // dummy for a start
|
|
$data['auth_type'] = "GOOGLE";
|
|
|
|
$out = array();
|
|
$ret = $wrenchboard->wrenchboard_api($data,$out,'authstart');
|
|
|
|
|
|
echo "=========================================================.....======================================";
|
|
var_dump($out);
|
|
|
|
|
|
?>
|