
Net::OpenSocial::Client::Container - Container configuration

my $container = Net::OpenSocial::Client::Container->new(
rest_endpoint => q{http://example.org/rest},
rpc_endpoint => q{http://example.org/rpc},
use_request_body_hash => 1,
);

Container confguration and provides some methods to support container specific implementation.

my $container = Net::OpenSocial::Client::Container->new(
rest_endpoint => q{http://example.org/rest},
rpc_endpoint => q{http://example.org/rpc},
use_request_body_hash => 1,
);
There already exist some major container classes. See Net::OpenSocial::Client::Container::Orkut, Net::OpenSocial::Client::Container::MySpace, Net::OpenSocial::Client::Container::Google, Net::OpenSocial::Client::Container::FriendConnect
my $container = Net::OpenSocial::Client::Container::Orkut->new;
or if you need new class for another container. You should make new class extending this.

OAuth request-token endpoint
OAuth authorization endpoint
OAuth access-token endpoint
RESTful API endpoint URL of container.
RPC endpoint URL of container.
if container use OAuth Request Body Hash extension or not. Set 0 by default.

Lyo Kato, <lyo.kato@gmail.com>

Copyright (C) 2009 by Lyo Kato
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.