A PHP library to connect to Divide.IQ.
composer require dividebv/phpdivideiq
use DivideBV\PHPDivideIQ\DivideIQ;
$username = 'user'; // You will receive this from the provider.
$password = 'password'; // You will receive this from the provider.
$environment = 'production'; // May also be `staging` or an arbitrary URL.
// A file storing the connection status.
$file = new SplFileObject('persist.iq.txt', 'c+');
if ($file->getSize()) {
// The file already exists, instantiate DivideIQ using the file.
$divideIq = DivideIQ::fromFile($file);
} else {
// File doesn't exist. Instantiate DivideIQ using the constructor.
$divideIq = new DivideIQ($username, $password, $environment);
$divideIq->setFile($file);
}
// Access a resource provided by this Divide.IQ server.
$result = $divideIq->request('stockbase_stock');
If you implemented this library like the example above, then the first step in
debugging would be to remove the persist.iq.txt
file. It's a JSON file with
connection credentials. Removing it will force the library to start afresh by
logging in with your username and password.
Note: this only helps when the connection previously worked.