I can't integrate vicidial non agent api in php .
require 'vicidialAgentAPI.php';
try {
$vicidialAPI = new VicidialAgentAPI("127.0.0.1", "VicidialAPI", "6666", "1234",true);
$vicidialAPI->version();
} catch (Exception $e) {
echo 'Exception: ', $e->getMessage(), "\n";
}
What's my problem ?
http://127.0.0.1/agc/api.php?source=VicidialAPI&user=6666&pass=1234&function=version http://127.0.0.1/agc/api.php?source=VicidialAPI&user=6666&pass=1234&function=version Exception: cURL The requested URL returned error: 404 Not Found
Replace 127.0.0.1 with the IP address of your vicidial server. If your server is local, try 'localhost'.