Overview & Purpose
The
AO API (Aevum Obscurum - Application Programming Interface) connects
directly to
Aevum Obscurum providing services to poll games, players, standings,
news, game maps and signatures.
The API has advanced functionality to allow for
game management. Game
management enables game creation. Interested organizing tournaments
from your own web site? Want to organize a league?
The AO API is provided for
free!
Sample Code
PHP Code Sample (prints player info):
<?php
require_once('aocon-1.2.0.inc.php');
$aocon = new AOCon();
$row = $aocon->getPlayerInfo(10001);
if ($row == NULL) {
printErrors($aocon->getErrors());
}
else {
printRow($row);
}
?>
Live Demo:
»
PHP Sample System (high level)
»
PHP Demo (low level)
Live Example (Records System):
»
AO Records Server
Help & Support
Please visit our forums at the
Multiplayer Hub for support:
»
AO API Forums
Download & Documentation
Download source distribution and documentation:
»
AO API 1.2.0 PHP Sources (

ZIP)
»
AO API 1.2.0 Doc (

PDF)
»
AO API 1.2.0 Doc (

Word)
Sample code:
»
PHP Sample System 1.2.0 (

ZIP)
Recommended reading:
»
PHP Best Practices