OHTSUKA Ko-hei > Net-Yadis-Discovery > Net::Yadis::Discovery::Protocol::LID

Download:
Net-Yadis-Discovery-0.05.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  0
Report a bug
Source  

NAME ^

Net::Yadis::Discovery::Protocol::LID - Extension module that add proposal LID API to Net::Yadis::Discovery;

SYNOPSIS ^

  use Net::Yadis::Discovery;
  my $disc = Net::Yadis::Discovery->new();
  $disc->discover("http://id.example.com/") or Carp::croak($disc->err);

  my @openid_xrd = $disc->lid_servers(['1.0','2.0']);
                                   # Argument is Array ref of version numbers, and it's optional.

  foreach my $srv (@xrd) {         # Loop for Each Service in LID's Yadis Resourse Descriptor
    print $srv->Type;              # http://lid.netmesh.org/sso/1.0 or http://lid.netmesh.org/sso/2.0
    print $srv->URI;               # URI that resolves to a resource providing the service (scalar, array or array ref)
  }

DESCRIPTION ^

Add Proposal API interface (http://yadis.org/wiki/Proposed_Yadis_API) to Net::Yadis::Discovery.

METHODS ^

$disc->lid_servers( [$version, ...] )

Returns the LID servers as array hashes of Net::Yadis::Object. Optionally accepts a array ref of versions supported by the client as a argument.

COPYRIGHT, WARRANTY, AUTHOR ^

See Net::Yadis::Discovery for author, copyrignt and licensing information.

SEE ALSO ^

Net::Yadis::Discovery

Yadis website: http://yadis.org/