Net::OpenID::Yadis(3pm) | User Contributed Perl Documentation | Net::OpenID::Yadis(3pm) |
Net::OpenID::Yadis - Perform Yadis discovery on URLs
version 1.20
use Net::OpenID::Yadis; my $disc = Net::OpenID::Yadis->new( consumer => $consumer, # Net::OpenID::Consumer object ); my $xrd = $disc->discover("http://id.example.com/") or Carp::croak($disc->err); print $disc->identity_url; # Yadis URL (Final URL if redirected) print $disc->xrd_url; # Yadis Resourse Descriptor URL foreach my $srv (@$xrd) { # Loop for Each Service in Yadis Resourse Descriptor print $srv->priority; # Service priority (sorted) print $srv->Type; # Identifier of some version of some service (scalar, array or array ref) print $srv->URI; # URI that resolves to a resource providing the service (scalar, array or array ref) print $srv->extra_field("Delegate","http://openid.net/xmlns/1.0"); # Extra field of some service } # If you are interested only in OpenID. (either 1.1 or 2.0) my $xrd = $self->services( 'http://specs.openid.net/auth/2.0/signon', 'http://specs.openid.net/auth/2.0/server', 'http://openid.net/signon/1.1', ); # If you want to choose random server by code-ref. my $xrd = $self->services(sub{($_[int(rand(@_))])});
This module provides an implementation of the Yadis protocol, which does XRDS-based service discovery on URLs.
This module was originally developed by OHTSUKA Ko-hei as Net::Yadis::Discovery, but was forked and simplified for inclusion in the core OpenID Consumer package.
This simplified version is tailored for the needs of Net::OpenID::Consumer; for other uses, Net::Yadis::Discovery is probably a better choice.
You can set the "consumer" in the constructor. See the corresponding method description below.
This module exports three constant values to use with discover method.
$request_method is optional, and if set this, you can change the HTTP request method of fetching Yadis URL. See EXPORT to know the value you can set, and default is YR_HEAD.
If this method returns undef, you can rely on the following errors codes (from $csr->errcode) to decide what to present to the user:
If no option is defined, returns same result with xrd_objects method.
protocol names or Type URLs are given, filter only given protocol. Two or more protocols are given, return and results of filtering.
Sample:
$disc->servers("openid","http://lid.netmesh.org/sso/1.0");
If reference of version numbers array is given after protocol names, filter only given version of protocol.
Sample:
$disc->servers("openid"=>['1.0','1.1'],"lid"=>['1.0']);
If you want to use version numbers limitation with type URL, you can use \ver as place holder of version number.
Sample:
$disc->servers("http://lid.netmesh.org/sso/\ver"=>['1.0','2.0']);
If code reference is given as argument , you can make your own filter rule. code reference is executed at the last of filtering logic, like this:
@results = $code_ref->(@temporary_results)
Sample: If you want to filter OpenID server and get only first
one:
($openid_server) =
$disc->servers("openid",sub{$_[0]});
This module is Copyright (c) 2006 OHTSUKA Ko-hei. All rights reserved.
You may distribute under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file.
This is free software. IT COMES WITHOUT WARRANTY OF ANY KIND.
Yadis website: <http://yadis.org/>
Net::OpenID::Yadis::Service
Net::OpenID::Consumer
Based on Net::Yadis::Discovery by OHTSUKA Ko-hei <nene@kokogiko.net>
Martin Atkins <mart@degeneration.co.uk>
2022-06-16 | perl v5.34.0 |