-
Notifications
You must be signed in to change notification settings - Fork 1
/
task.php
executable file
·52 lines (43 loc) · 1.49 KB
/
task.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/php
<?php
require('lib/imagetyperzapi.php'); // load API library
function test_api() {
# grab token from https://imagetyperz.com
$access_token = 'your_access_token';
$i = new ImagetyperzAPI($access_token); // init API lib obj
$balance = $i->account_balance(); // get balance
echo "Balance: $balance\n";
echo "Solving captcha ...\n";
$params = array();
$params['template_name'] = 'Login test page';
$params['pageurl'] = 'https://imagetyperz.net/automation/login';
$params['variables'] = array(
"username" => "abc",
"password" => 'paZZW0rd'
);
//$params['proxy'] = '126.45.34.53:123'; // - optional
//$params['user_agent'] = 'Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0'; // - optional
$captcha_id = $i->submit_task($params);
echo "Waiting for captcha to be solved...\n";
// send pushVariable - update of variable while task is running (e.g 2FA code)
// $i->task_push_variables($Ccaptcha_id, array(
// "twofactor_code" => "39283"
// ));
$response = null;
while($response === null) {
sleep(10);
$response = $i->retrieve_response($captcha_id);
}
echo "Response: ";
var_dump($response);
}
// Main method
function main() {
try {
test_api(); // test API
} catch (Exception $ex) {
echo "Error occured: " . $ex->getMessage(); // print error
}
}
main(); // run main function
?>