Facebook framework
I have (finally) written a working Facebook application, and I can now post here a skeleton for a MyLibrary/Facebook application:
# require
use CGI;
use strict;
use WWW::Facebook::API;
# initialize
my $cgi = CGI->new;
my $fbml = ”;
my $facebook = WWW::Facebook::API->new(
api_key => “foo”,
secret => “bar”,
app_path => […]