Update: 2026-06-23 18:27:04
This commit is contained in:
14
backend/test_api.php
Normal file
14
backend/test_api.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
require_once __DIR__ . '/core/bootstrap.php';
|
||||
$redis->flushAll();
|
||||
|
||||
$ch = curl_init('https://jordan-siro.intaleqapp.com/backend/loginFirstTime.php');
|
||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
||||
curl_setopt($ch, CURLOPT_HEADER, true);
|
||||
curl_setopt($ch, CURLOPT_POST, true);
|
||||
curl_setopt($ch, CURLOPT_POSTFIELDS, 'id=new&password=unknown&aud=passenger-app:ios');
|
||||
$response = curl_exec($ch);
|
||||
curl_close($ch);
|
||||
|
||||
echo "RAW RESPONSE:\n";
|
||||
echo $response;
|
||||
Reference in New Issue
Block a user