Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::openid::extension::simpleregistration(3pm) [debian man page]

Net::OpenID::Extension::SimpleRegistration(3pm) 	User Contributed Perl Documentation	   Net::OpenID::Extension::SimpleRegistration(3pm)

NAME
Net::OpenID::Extension::SimpleRegistration - Support for the Simple Registration extension (SREG) VERSION
version 1.14 SYNOPSIS
In Consumer... my $sreg_req = $claimed_identity->add_extension_request('Net::OpenID::Extension::SimpleRegistration', ( required_fields => [qw(nickname email)], optional_fields => [qw(country language timezone)], policy_url => "http://example.com/policy.html", )); Then, in Server, when handling the authentication request... # FIXME: What object do we have in ::Server that can hold this method? my $sreg_req = $something->get_extension_request('Net::OpenID::Extension::SimpleRegistration'); my $required_fields = $sreg_req->required_fields; my $optional_fields = $sreg_req->optional_fields; my $policy_url = $sreg_req->policy_url; When Server sends back its response... # FIXME: Again, what object do we have to hold this method? my $sreg_res = $something->add_extension_response('Net::OpenID::Extension::SimpleRegistration', ( nickname => $nickname, email => $email, )); And finally, when back in Consumer recieving the response: my $sreg_res = $verified_identity->get_extension_response('Net::OpenID::Extension::SimpleRegistration'); my $nickname = $sreg_res->nickname; my $email = $sreg_res->email; my $country = $sreg_res->country; my $language = $sreg_res->language; my $timezone = $sreg_res->timezone; perl v5.12.4 2011-11-11 Net::OpenID::Extension::SimpleRegistration(3pm)

Check Out this Related Man Page

Net::OpenID::Yadis::Service(3pm)			User Contributed Perl Documentation			  Net::OpenID::Yadis::Service(3pm)

NAME
Net::OpenID::Yadis::Service - Class representing an XRDS Service element VERSION
version 1.14 SYNOPSIS
use Net::OpenID::Yadis; my $disc = Net::OpenID::Yadis->new(); my @xrd = $disc->discover("http://id.example.com/") or Carp::croak($disc->err); 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 } DESCRIPTION
After Net::OpenID::Yadis performs discovery, the result is a list of instances of this class. METHODS
$srv->priority The priority value for the service. $srv->Type The URI representing the kind of service provided at the endpoint for this record. $srv->URI The URI of the service endpoint. $srv->extra_field( $fieldname , $namespace ) Fetch the value of extension fields not provided directly by this class. If $namespace is not specified, the default is the namespace whose name is the empty string. COPYRIGHT, WARRANTY, AUTHOR See Net::OpenID::Yadis for author, copyright and licensing information. SEE ALSO
Net::OpenID::Yadis Yadis website: <http://yadis.org/> perl v5.12.4 2011-11-11 Net::OpenID::Yadis::Service(3pm)
Man Page

4 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

Why am I not recieving email notification?

I have been a member for almost a year now. I have always recieved email notifications when I select "subcribe to this thread" at the bottom of posts that I reply to. However, over the last month or so, I have not been recieving email notification of replys to posts I respond to. I have... (6 Replies)
Discussion started by: Kelam_Magnus
6 Replies

2. News, Links, Events and Announcements

What about the email@unix.com idea?

I remember there was a topic about this idea long time ago. What happened to it? (13 Replies)
Discussion started by: HOUSCOUS
13 Replies

3. Forum Support Area for Unregistered Users & Account Problems

new account, not recieving email to confirm

Hello, I registered an account several hours ago, and never recieved the email registration link in my email account. Read the instructions posted here, and requested to resend registration link, and this one also has not shown up in my email acccount. yes, I've checked the bulk folder as... (1 Reply)
Discussion started by: denn
1 Replies

4. AIX

How to Load a CICS IPC Kernel Extension in a versioned "rootvg" WPAR ?

Anyone running CICS TX in a WPAR ? In my attempts to run CICS TX 5.1.0.1 in a WPAR..... CICS fails to start due to unable to load a CICS IPC Kernel Extension. The Kernel Extension is 64 bit (so not a 32 vs 64 bit issue). Base system/LPAR is Power8 and AIX 7.1 TL3 SP5. WPAR is versioned... (4 Replies)
Discussion started by: The Doctor
4 Replies