Files
Wrench-ApiTester/public/login.php
T
2023-02-13 21:19:04 -05:00

34 lines
898 B
PHP

<?php
include_once('def.php');
include('wrenchboard_class.php');
$wrenchboard = new wrenchboard_class();
$email = 'ses66181+1@gmail.com';
// $email = 'ses66181+2@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);
if ($out['internal_return'] == 100){
echo 'Save the session for other use - you will need it';
$myfile = fopen("../writable/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);
}
?>