Net::OpenID::VerifiedIdentity.3pm

Langue: en

Autres versions - même langue

Version: 2006-05-30 (ubuntu - 08/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

Net::OpenID::VerifiedIdentity - object representing a verified OpenID identity

SYNOPSIS

   use Net::OpenID::Consumer;
   my $csr = Net::OpenID::Consumer->new;
   ....
   my $vident = $csr->verified_identity
     or die $csr->err;
 
   my $url = $vident->url;
 
 

DESCRIPTION

After Net::OpenID::Consumer verifies a user's identity and does the signature checks, it gives you this Net::OpenID::VerifiedIdentity object, from which you can learn more about the user.

METHODS

$vident->url
Returns the URL (as a scalar) that was verified. (Remember, an OpenID is just a URL.)
$vident->display
Returns the a short ``display form'' of the verified URL using a couple brain-dead patterns. For instance, the identity ``http://www.foo.com/~bob/'' will map to ``bob [foo.com]'' The www. prefix is removed, as well as http, and a username is looked for, in either the tilde form, or ``/users/USERNAME'' or ``/members/USERNAME''. If the path component is empty or just ``/'', then the display form is just the hostname, so ``http://myblog.com/'' is just ``myblog.com''.

Suggestions for improving this function are welcome!

$vident->rss
$vident->atom
$vident->foaf
$vident->declared_rss
$vident->declared_atom
$vident->declared_foaf
Returns the absolute URLs (as scalars) of the user's RSS, Atom, and FOAF XML documents that were also found in their HTML's <head> section. The short versions will only return a URL if they're below the root URL that was verified. If you want to get at the user's declared rss/atom/foaf, even if it's on a different host or parent directory, use the delcared_* versions, which don't have the additional checks.

2005-05-24: A future module will take a Net::OpenID::VerifiedIdentity object and create an OpenID profile object so you don't have to manually parse all those documents to get profile information.

$vident->foafmaker
Returns the value of the "foaf:maker" meta tag, if declared.

COPYRIGHT, WARRANTY, AUTHOR

See Net::OpenID::Consumer for author, copyrignt and licensing information.

SEE ALSO

Net::OpenID::Consumer

Net::OpenID::ClaimedIdentity

Net::OpenID::Server

Website: <http://www.danga.com/openid/>