show/hide this revision's text 2 Added Google Apps info.

Note that I have not thoroughly tested this code, . The code below is even more shakey.

I have spent more time and I've gotten it does not yet to work for Google's with my Google Apps logins. I'm still working on a way to fix that, but I suspect it'll take a lot bigger domain with the following changesthan those above, since it seems in addition to return an ID that the OpenID code tries to use as a URL to above:

Zend/OpenId/Consumer.php, line 734

    	$discovery_url = $id;    	if(strpos($discovery_url, 'discover' against/', strpos($discovery_url, '//')+2) !== false) {    		$discovery_url = substr($discovery_url, 0, strpos($discovery_url, '/', strpos($discovery_url, '//')+2));    	$discovery_url .Since the URL doesn't actually exist= '/.well-known/host-meta';    	$response = $this->_httpRequest($discovery_url, 'GET', array(), it fails$status);        if ($status === 200 && is_string($response)) {            if (preg_match('/Link: <([^><]+)>/i', $response, $r)) {    			$id = $r[1];

This is right after:

/* TODO: OpenID 2.0 (7.3) XRI and Yadis discovery */

I believe that was the only change I had to make. I've thought of a hack-y way I'm pretty sure there's supposed to do itbe some checking involved with the above for security reasons, but I'm trying to avoid I haven't looked far enough into it to see what they would be.

show/hide this revision's text 1

I need to use Google's OpenID stuff, and I tried Steven's code and couldn't get it to work as-is. I've made some modifications.

The _discovery change method is still the same:

Zend/OpenId/Consumer.php, line 765, add:

} else if (preg_match('/<URI>([^<]+)<\/URI>/i', $response, $r)) {
    $version = 2.0;
    $server = $r[1];

The rest is different, though:

Zend/OpenId/Consumer.php, line 859 (after making the above change), add:

if (stristr($server, 'https://www.google.com/') !== false) {
    $id = 'http://specs.openid.net/auth/2.0/identifier_select';
    $claimedId = 'http://specs.openid.net/auth/2.0/identifier_select';
}

This is right before:

$params['openid.identity'] = $id;

$params['openid.claimed_id'] = $claimedId;

And to get it to return the ID, once authorized:

Zend/Auth/Adapter/OpenId.php, line 278:

if(isset($_REQUEST['openid_identity']))
{
    $this->_id = $_REQUEST['openid_identity'];
    $id = $this->_id;
}

This is right before:

return new Zend_Auth_Result(
    Zend_Auth_Result::SUCCESS,
    $id,
    array("Authentication successful"));

Note that I have not thoroughly tested this code, and it does not yet work for Google's Apps logins. I'm still working on a way to fix that, but I suspect it'll take a lot bigger changes than those above, since it seems to return an ID that the OpenID code tries to use as a URL to 'discover' against. Since the URL doesn't actually exist, it fails. I've thought of a hack-y way to do it, but I'm trying to avoid it.