chantasaur / lightopenid

Automatically exported from code.google.com/p/lightopenid
0 stars 0 forks source link

More information about OpenID Attribute Exchange #22

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hi,

first of all, I want to thank you. With your library, it is very easy to 
implement OpenID to a little project.

I would like to have a bit more information about OpenID Attribute Exchange in 
the Wiki-Section. Could you please create a new page with the following 
information:

AX and SREG extensions are supported.
To use them, specify $openid->required and/or $openid->optional before calling 
$openid->authUrl().
These are arrays, with values being AX schema paths (the 'path' part of the 
URL).
For example:
  $openid->required = array('namePerson/friendly', 'contact/email');
  $openid->optional = array('namePerson/first');

All possible Strings:
 * 'namePerson/friendly'
 * 'contact/email'
 * 'namePerson'
 * 'birthDate'
 * 'person/gender'
 * 'contact/postalCode/home'
 * 'contact/country/home'
 * 'pref/language'
 * 'pref/timezone'

Specification: http://openid.net/specs/openid-attribute-exchange-1_0.html

Original issue reported on code.google.com by themoose...@googlemail.com on 17 Jan 2011 at 10:29

GoogleCodeExporter commented 8 years ago
Expanded your text a bit, and added the page:

http://code.google.com/p/lightopenid/wiki/GettingMoreInformation

Original comment by mewp...@gmail.com on 17 Jan 2011 at 11:07