These forums have been archived and are now read-only.
The new forums are live and can be found at https://forums.eveonline.com/
iveeCrest: A PHP library for CREST (beta)
//initialize iveeCrest. Adapt path as required.require_once('/path/to/iveeCrest/iveeCrestInit.php');//instantiate the CREST client, passing the configured options$client = new iveeCrest\Client( iveeCrest\Config::getCrestBaseUrl(), iveeCrest\Config::getClientId(), iveeCrest\Config::getClientSecret(), iveeCrest\Config::getUserAgent(), iveeCrest\Config::getClientRefreshToken());//instantiate an endpoint handler$handler = new iveeCrest\EndpointHandler($client);//show response data from verifyAccessToken callprint_r($handler->verifyAccessToken());//get regions endpointprint_r($handler->getRegions());//get specific region endpointprint_r($handler->getRegion(10000002));//gather all item groups (multipage response is gathered automatically)print_r($handler->getItemGroups());//get all market orders for Tritanium in The Forgeprint_r($handler->getMarketOrders(34, 10000002));
iveeCore 3.0: The PHP engine for industrial activities and CREST library