当前位置:首页 > PHP教程 > php高级应用 > 列表

新浪微博OAuth认证和储存的主要过程详解

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-18 21:32:13 浏览: 评论:0 

网上很多关于OAuth的文章,但是包括sina本身都都没有详细的的介绍,包括验证过程和验证后数据的储存,所以参考了Twitter的认证过程写下一些详细的注释代码。

在我们开始前,我们先建立一张数据库来保存用户信息,下面是一个基本的 Mysql 的例子:

  1. CREATE TABLE `oauth_users` ( 
  2.   `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, 
  3.   `oauth_provider` VARCHAR(10), 
  4.   `oauth_uid` text, 
  5.   `oauth_token` text, 
  6.   `oauth_secret` text, 
  7.   `username` text, 
  8.   PRIMARY KEY (`id`) 
  9. ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 

注意 oauth_token 和 oauth_secret 这两个字段。sina的 OAuth 认证需要 token 和 token_secret 两个参数来完成认证,所以我们需要预留两个字段来记录他们。

然后我们需要依次完成以下工作:

向 SinaAPI发起认证申请 注册/或者登录,如果用户已经有帐号的情况下 将相关数据保存在 Session 中

基于 OAuth 的认证流程从生成一个网址开始。用户被重定向到该网址要求认证,认证通过后,会重定向到我们的应用服务器,并会将两个认证后的参数通过 URL 方式传回。

建立index.php

  1. <?php 
  2. session_start(); 
  3. //if( isset($_SESSION['last_key']) ) 
  4.   header("Location: weibolist.php"); 
  5. include_once'config.php' ); 
  6. include_once'weibooauth.php' ); 
  7. // 创建 sinaOAuth 对象实例 
  8. $sinaOAuth = new WeiboOAuth( WB_AKEY , WB_SKEY ); 
  9. $keys = $sinaOAuth->getRequestToken(); 
  10. // Requesting authentication tokens, the parameter is the URL we will be redirected to 
  11. $aurl = $sinaOAuth->getAuthorizeURL( $keys['oauth_token'] ,false , 'http://t.yourtion.com/sina/callback.php'); 
  12. // 保存到 session 中 
  13. $_SESSION['keys'] = $keys
  14. ?> 
  15. <a href="<?=$aurl?>">Use Oauth to login</a> 

接下来,我们还需要在这个文件中完成以下三件事:

验证 URL 中的数据

验证 Session 中的 token 数据

验证 Session 中的 secret 数据

如果所有数据库都是合法的,我们需要创建一个新的 SinaOAuth 对象实例,跟之前不同的是,我们要把获取到的 token 数据做为参数传入对象。之后,我们应该可以获取到一个 access token,这个获取到的数据应该是一个数组,这个 access token 是我们唯一需要保存起来的数据。

建立callback.php

  1. <?php 
  2. session_start(); 
  3. include_once ('config.php'); 
  4. include_once ('weibooauth.php'); 
  5. if (!emptyempty($_GET['oauth_verifier']) && !emptyempty($_SESSION['keys']['oauth_token']) && 
  6.   !emptyempty($_SESSION['keys']['oauth_token'])) 
  7.   // SinaOAuth 对象实例,注意新加入的两个参数 
  8.   $sinaOAuth = new WeiboOAuth(WB_AKEY, WB_SKEY, $_SESSION['keys']['oauth_token'], 
  9.     $_SESSION['keys']['oauth_token_secret']); 
  10.   // 获取 access token 
  11.   $access_token = $sinaOAuth->getAccessToken($_REQUEST['oauth_verifier']); 
  12.   // 将获取到的 access token 保存到 Session 中 
  13.   $_SESSION['access_token'] = $access_token
  14.   // 获取用户信息 
  15.   $user_info = $sinaOAuth->get('account/verify_credentials'); 
  16.   // 打印用户信息 
  17.   mysql_connect(DATABASE_HOST, DATABASE_USER, DATABASE_PSSWORD); 
  18.   mysql_select_db(DATABASE_DB_NAME); 
  19.   //更换成你的数据库连接,在config.php中 
  20.   if (isset($user_info->error) or emptyempty($user_info['id'])) 
  21.   { 
  22.     // Something's wrong, go back to square 1 
  23.     header('Location: index.php'); 
  24.   } else 
  25.   { 
  26.     // Let's find the user by its ID 
  27.     $sql = "SELECT * FROM oauth_users WHERE oauth_provider='sina' AND oauth_uid=" .$user_info['id']; 
  28.     $query = mysql_query($sql); 
  29.     $result = mysql_fetch_array($query); 
  30.     // If not, let's add it to the database 
  31.     if (emptyempty($result)) 
  32.     { 
  33.       $sql = "INSERT INTO oauth_users (oauth_provider, oauth_uid, username, oauth_token, oauth_secret) VALUES ('sina', '" . 
  34.         $user_info['id'] . "', '" . $user_info['screen_name'] . "', '" . $access_token['oauth_token'] . 
  35.         "', '" . $access_token['oauth_token_secret'] . "')"
  36.       $query = mysql_query($sql); 
  37.       $query = mysql_query("SELECT * FROM oauth_users WHERE id = ".mysql_insert_id()); 
  38.       $result = mysql_fetch_array($query); 
  39.     } else 
  40.     { 
  41.       // Update the tokens 
  42.       $query = mysql_query("UPDATE oauth_users SET oauth_token = '" . $access_token['oauth_token'] . 
  43.         "', oauth_secret = '" . $access_token['oauth_token_secret'] . 
  44.         "' WHERE oauth_provider = 'sina' AND oauth_uid = " . $user_info['id']); 
  45.     } 
  46.     $_SESSION['id']=$result['id']; 
  47.     $_SESSION['username']=$result['username']; 
  48.     $_SESSION['oauth_uid']=$result['oauth_uid']; 
  49.     $_SESSION['oauth_provider']=$result['oauth_provider']; 
  50.     $_SESSION['oauth_token']=$result['oauth_token']; 
  51.     $_SESSION['oauth_secret']=$result['oauth_secret']; 
  52.     header('Location: update.php'); 
  53.   } 
  54. else 
  55.   // 数据不完整,转到上一步 
  56.   header('Location: index.php'); 
  57.  
  58. ?> 

你可以通过 $user_info->id 来获得用户的 ID,通过 $user_info->screen_name 来获取用户名,等等,其它的信息也可以通过同样的方式获取。

需要重点指出的是,oauth_verifier 这个传回来的参数不能被重用,如果上面的代码已经正确输出了用户信息,你可以试着重新刷新页面,应该会看到页面会抛出一个错误信息,因为 oauth_verifier 已经被我们用过一次了。要再次使用,需要到 index.php 页面重新发起一个认证请求。

用户注册

获得了用户信息后,现在我们要开始把用户信息注册到我们自己的数据库中,当然前提是用户没有在本地数据库注册过。

上面代码中的数据库链接信息要改成你自己的。如果用户已经存在于我们的数据库中,我们需要更新用户的 tokens 字段,因为这说明 Twitter 生成了新的 tokens,数据库中的 tokens 已经过期了。如果用户不存在,我们需要新加一条记录,并将相关的数据保存在 Session中,最后重定向回 update.php 页面。

其中update.php代码如下:

需要注意的是,上面代码中的 SQL 没有经过验证,你在实际使用的时候可能要经过修改。连接数据库前,我们需要先验证一下用户是否已经登录。有了用户名,我们就可以展示一条个性的欢迎信息了:

  1. <?php 
  2. include_once ('config.php'); 
  3. include_once ('weibooauth.php'); 
  4. session_start(); 
  5. if(!emptyempty($_SESSION['username'])){ 
  6.   // User is logged in, redirect 
  7.   header('index.php'); 
  8. ?> 
  9. <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="zh-CN"
  10. <head profile="http://gmpg.org/xfn/11"
  11.   <title>通过 OAuth 进行身份验证--Yourtion</title> 
  12.   <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> 
  13. </head> 
  14. <body> 
  15. <h2>Hello <?=$_SESSION['username'] ?></h2> 
  16. </body> 
  17. </html> 

这就是OAuth认证和储存的主要过程,希望对你有帮助。 

Tags: 新浪微博认证 OAuth

分享到: