2009/7/6 Trevor Phillips <[email protected]>: > Doing a bit more reading, it looks like Google won't support SREG, but > are supporting AX, which seems to be the way places are going. Does > the current Catalyst OpenID Auth support AX? > > Fudging the format for the SREG query, I tried: > > extensions => { > 'http://openid.net/srv/ax/1.0' => 1 > }, > extension_args => [ > 'http://openid.net/srv/ax/1.0', > { > required => 'email', > 'type.email' => 'http://schema.openid.net/contact/email' > } > ] > > ...but got nothing back from the providers I tried.
Indeed - Google are super picky :) You'll need the 'mode' parameter too: 'http://openid.net/srv/ax/1.0' => { required => 'email', mode => 'fetch_request', 'type.email' => 'http://schema.openid.net/contact/email', }, Cheers, Edmund. _______________________________________________ List: [email protected] Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/[email protected]/ Dev site: http://dev.catalyst.perl.org/
