|
NAMENet::OAuth2::Client - client for OAuth2 access, deprecated interface SYNOPSIS # This module provides the deprecated interface
my $client = Net::OAuth2::Client->new(
$client_id,
$client_secret,
site => $site
);
my $auth = $client->web_server(
redirect_path => "$site/auth/facebook/callback"
);
# interface since v0.50
my $client = Net::OAuth2::Profile::WebServer->new(
client_id => $client_id,
client_secret => $client_secret,
site => $site
redirect_uri => "$site/auth/facebook/callback"
);
DESCRIPTIONThis module is kept to translate the expired interface into the new interface. METHODSConstructors
Accessors
Actions
COPYRIGHTSCopyrights 2013-2019 on the perl code and the related
documentation
Copyrights 2011-2012 by Keith Grennan. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://dev.perl.org/licenses/
|