I don't know specifically about phpBB3, but it's very easy to access the Glitch API through PHP using file_get_contents and json_decode. For example, give this short script a try:
<?php
$reply = file_get_contents("http://api.glitch.com/simple/players.fullInfo?player_tsid=PUV89PBTCNF26U4");
$info = json_decode($reply);
echo $info->player_name . " is in " . $info->location->name . "\n";
?>
Glitch Atlas is written in PHP, which is a quick-and-dirty way to build a web site.
Posted 6 months ago by
Janitch

|
Permalink