As promised here is a really easy to use PHP class for accessing Kumulos on the web. This can be really handy for a host of things, such as simply displaying leaderboards on a website or creating a cloud bases SaaS service with mobile and desktop access.
To use simply add the following code:
$k = new kAPI('APIKey', 'secretKey');
try {
$params = array('foo' => 'bar');
$result = $k->call('method', $params);
}
// Can not do try/catch to let default handler kick in
catch (kAPIException $e) {
echo $e->getMessage();
echo 'Server response:';
var_dump($e->serverResponse);
}