Files
Wrench-ApiTester/public/wrenchboard/login.php
T
dev-chiefworks c50bf3a8d7 tst updates
2024-01-07 13:57:29 -05:00

33 lines
989 B
PHP

<?php
include_once('def.php');
include('wrenchboard_class.php');
$wrenchboard = new wrenchboard_class();
$email = 'ses66181+1@gmail.com';
$data['username'] = $email;
$data['password'] = 'may12002';
$data['loc'] = "38.101.241.200";
$data['sessionid'] = rand(10000,99999)."A".rand(10000,99999); // dummy for a start
$data['action'] = WRENCHBOARD_ACCOUNT_LOGIN;
$out = array();
$ret = $wrenchboard->wrenchboard_api($data,$out);
echo "=========================================================.....======================================";
var_dump($out);
if ($out['internal_return'] == 100){
echo 'Save the session for other use - you will need it';
$myfile = fopen("../../writable/wrench_session.txt", "w") or die("Unable to open file!");
fwrite($myfile, $out['session']);
fwrite($myfile, "\n");
fwrite($myfile, $out['member_id']);
fwrite($myfile, "\n");
fwrite($myfile, $out['uid']);
fclose($myfile);
}
?>