https://github.com/getty/p5-facebook
Facebook SDL in Perl
https://github.com/getty/p5-facebook
Last synced: 5 months ago
JSON representation
Facebook SDL in Perl
- Host: GitHub
- URL: https://github.com/getty/p5-facebook
- Owner: Getty
- Created: 2010-10-21T03:50:37.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2011-03-29T19:48:49.000Z (about 14 years ago)
- Last Synced: 2024-06-21T14:14:34.480Z (11 months ago)
- Language: Perl
- Homepage: http://search.cpan.org/perldoc?Facebook
- Size: 505 KB
- Stars: 12
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
# NAME
Facebook - The try for a Facebook SDK in Perl
# SYNOPSIS
use Facebook;
my $fb = Facebook->new(
app_id => $app_id,
secret => $secret,
);use Facebook::Cookie;
my $fb = Facebook->new(
cookie => Facebook::Cookie->new(
app_id => $app_id,
secret => $secret,
cookie => $cookie_as_text,
),
);
# You need to have Facebook::Graph installed so that this works
my $gettys_facebook_profile = $fb->graph->query
->find(100001153174797)
->include_metadata
->request
->as_hashref;# DESCRIPTION
__If you are new to Facebook application development in Perl please read [Facebook::Manual](http://search.cpan.org/perldoc?Facebook::Manual)!__
This package reflects an instance for your application. Depending on what API of it you use, you require to install the
needed distributions or provide alternative packages yourself.# METHODS
## $obj->graph
- Arguments: None
- Return value: Object
__If you want to use this, you need to install [Facebook::Graph](http://search.cpan.org/perldoc?Facebook::Graph)!__
Returns an instance of the graph_class (by default this is [Facebook::Graph](http://search.cpan.org/perldoc?Facebook::Graph))
## $obj->rest
- Arguments: None
- Return value: Object
__If you want to use this, you need to install [WWW::Facebook::API](http://search.cpan.org/perldoc?WWW::Facebook::API)!__
Returns an instance of the rest_class (by default this is [WWW::Facebook::API](http://search.cpan.org/perldoc?WWW::Facebook::API))
# LIMITATIONS
# TROUBLESHOOTING
# SUPPORT
IRC
Join #facebook on irc.perl.org.
Repository
http://github.com/Getty/p5-facebook
Pull request and additional contributors are welcome
Issue Tracker
http://github.com/Getty/p5-facebook/issues
# AUTHOR
Torsten Raudssus (http://www.raudssus.de/)
# CONTRIBUTORS
# COPYRIGHT
Copyright (c) 2010 the Facebook L and L as
listed on [Facebook](http://search.cpan.org/perldoc?Facebook) and all other packages in this distribution.# LICENSE
This library is free software and may be distributed under the same terms
as perl itself.