Discussion: phpBB3 and Glitch API

Hey all! Is anyone familiar with creating plugins for phpBB3? I'm messing around with the Glitch API and trying to connect a wordpress / phpbb forum and glitch auth together for ease of use. 

I've used ping's WP plugin for our group website, www.theimaginators.com which works beautifully.
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.