雅虎开放id登录api



我新的开放id,但我仍然试图在我的网站整合开放id。我使用雅虎提供商登录到我的网站。能否帮我获取用户信息,如雅虎邮箱id,名,姓?

我从一个为谷歌提供的网站上取了下面的代码,我已将提供商更改为雅虎

我尝试过的代码:

<?php
# Logging in with Google accounts requires setting special identity, so this example shows how to do it.
require 'openid.php';
try {
# Change 'localhost' to your domain name.
$openid = new LightOpenID('localhost');
if(!$openid->mode) {
if(isset($_GET['login'])) {
$openid->identity = 'https://me.yahoo.com';
header('Location: ' . $openid->authUrl());
}
?>
<form action="?login" method="post">
<button>Login with Yahoo</button>
</form>
<?php
} elseif($openid->mode == 'cancel') {
echo 'User has canceled authentication!';
} else {
echo 'User ' . ($openid->validate() ? $openid->identity . ' has ' : 'has not ') . 'logged in.';
print_r($openid->ax_to_sreg);
}
} catch(ErrorException $e) {
echo $e->getMessage();
}

登录后,我得到这样的输出:

User https://open.login.yahooapis.com/openidx20/user_profile/XXXX has logged in.

上面的url有什么用?如何获取用户信息?

在谷歌搜索了很多后找到了我的解决方案。现在我可以获取登录用户

的电子邮件了

下面是修改后的代码:

<?php

require 'openid.php';
try
{
    # Change 'localhost' to your domain name.
    $openid = new LightOpenID($_SERVER['HTTP_HOST']);
    //Not already logged in
    if(!$openid->mode)
    {
        //do the login
        if(isset($_GET['login']))
        {
            //The google openid url
            $openid->identity = 'https://me.yahoo.com';
            //Get additional google account information about the user , name , email , country
            $openid->required = array('contact/email' , 'namePerson/first' , 'namePerson/last' , 'pref/language' , 'contact/country/home');
            //start discovery
            header('Location: ' . $openid->authUrl());
        }
        else
        {
            //print the login form
            login_form();
        }
    }
    else if($openid->mode == 'cancel')
    {
        echo 'User has canceled authentication!';
        //redirect back to login page ??
    }
    //Echo login information by default
    else
    {
        if($openid->validate())
        {
            //User logged in
            $d = $openid->getAttributes();
            $first_name = $d['namePerson/first'];
            $last_name = $d['namePerson/last'];
            $email = $d['contact/email'];
            $language_code = $d['pref/language'];
            $country_code = $d['contact/country/home'];
            $data = array(
                'first_name' => $first_name ,
                'last_name' => $last_name ,
                'email' => $email ,
            );
            //now signup/login the user.
            print_r($data);
        }
        else
        {
            //user is not logged in
        }
    }
}
catch(ErrorException $e)
{
    echo $e->getMessage();
}
/*
    This function will print the login form with the button
*/
function login_form()
{
?>
<a href="?login">Login with Yahoo</a>
<?php
}

相关内容

  • 没有找到相关文章

最新更新