The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Facebook::Graph::BatchRequests - Batch Requests

VERSION

version 1.1000

SYNOPSIS

    # set access_token, required
    my $fb = Facebook::Graph->new(access_token => $access_token);
    my @batches = $fb->batch_requests
        ->add_request('sarahbownds')
        ->add_request({"method" => "POST", "relative_url" => 'me/feed', body => "message=Test update"})
        ->request;

    foreach my $batch (@batches) {
        print $batch->{code} . $batch->{body} . Dumper(\$batch->{data}, \$batch->{headers}) . "\n";
    }

DESCRIPTION

send batch requests to save time: http://developers.facebook.com/docs/reference/api/batch/

METHODS

new ( [ params ] )

params

A hash or hashref of parameters to pass to the constructor.

access_token

An access token string used to make Facebook requests as a privileged user.

add_request

add request, if not HASHREF, will default method as GET and arg as relative_url

    $batch_requests->add_request('sarahbownds'); # as { method => 'GET', relative_url => 'sarahbownds' }
    $batch_requests->add_request({"method" => "POST", "relative_url" => 'me/feed', body => "message=Test update"})

request

    $batch_requests->request;
    $batch_requests->request(@requests);

Fire the request and return decoded @batches data

LEGAL

Facebook::Graph is Copyright 2010 - 2012 Plain Black Corporation (http://www.plainblack.com) and is licensed under the same terms as Perl itself.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 102:

You forgot a '=back' before '=head2'

You forgot a '=back' before '=head2'