I had used active collab API . as per their document generated API URL and API token .
when i try to retrieve data from activeCollab a 404 error is shown in console. i don't know whats wrong with mine. this is my URL: http://my_site.com/api.php?path_info=people&auth_api_token=my_api_token. this is my code that I've done also,
require_once 'ActiveCollab/autoload.php';
use \ActiveCollab\Client as API;
use \ActiveCollab\Connectors\Curl as CurlConnector;
API::setUrl('my_api_url');
API::setKey('my_api_token');
API::setConnector(new CurlConnector);
var_dump(API::info());