Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

#!perl
use strict;
my $client = WWW::Facebook::API->new(
desktop => 1,
throw_errors => 1,
parse => 1,
);
print "Enter your public API key: ";
chomp( my $val = <STDIN> );
$client->api_key($val);
print "Enter your API secret: ";
chomp( $val = <STDIN> );
$client->secret($val);
my $token = $client->auth->login( sleep => 20 );
$client->auth->get_session($token);
my $friends_perl = $client->friends->get;
print Dumper $friends_perl;
my $query = $client->fql->query(
query => 'SELECT name FROM user WHERE uid=' . $client->session_uid );
print Dumper $query;
my $notifications_perl = $client->notifications->get;
print Dumper $notifications_perl;
# Current user's quotes
my $quotes_perl = $client->users->get_info(
uids => $friends_perl,
fields => ['quotes']
);
print Dumper $quotes_perl;
$client->auth->logout;