当前位置: 网学 > 编程文档 > PHP > 正文

Google Oauth登录系统开发示例

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/01/02

us登录系统,你只需要在index.php中加载这个文件。<?php  require_once ''src/apiClient.php'';  require_once ''src/contrib/apiOauth2Service.php'';  session_start();  $client = new apiClient();  setApplicationName("Google Account Login");  $oauth2 = new apiOauth2Service($client);  if (isset( Google Oauth登录系统开发示例_网学

浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
GET[''code'']))  {  $client->authenticate();   Google Oauth登录系统开发示例_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
SESSION[''token''] = $client->getAccessToken();  $redirect = ''http://'' .  Google Oauth登录系统开发示例_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
SERVER[''HTTP_HOST''] .  Google Oauth登录系统开发示例_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
SERVER[''PHP_SELF''];  header(''Location: '' . filter_var($redirect, FILTER_SANITIZE_URL));  }  if (isset( Google Oauth登录系统开发示例_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
SESSION[''token''])) {  $client->setAccessToken( Google Oauth登录系统开发示例_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
SESSION[''token'']);  }  if (isset( Google Oauth登录系统开发示例_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
REQUEST[''logout''])) {  unset( Google Oauth登录系统开发示例_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
SESSION[''token'']);  unset( Google Oauth登录系统开发示例_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
SESSION[''google_data'']); //Google session data unset  $client->revokeToken();  }  if ($client->getAccessToken())  {  $user = $oauth2->userinfo->get();   Google Oauth登录系统开发示例_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
SESSION[''google_data'']=$user; // Storing Google User Data in Session  header("location: home.php");   Google Oauth登录系统开发示例_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
SESSION[''token''] = $client->getAccessToken();  } else {  $authUrl = $client->createAuthUrl();  }  if(isset($personMarkup)):  print $personMarkup;  endif if(isset($authUrl))  {  echo "<a class="login" href="$authUrl">Google Account Login</a>";  } else {  echo "<a class="logout" href="?logout">Logout</a>";  }  ?>  home.php在这里我们需要向之前创建的user表插入Google plus的session信息。代码如下:<?php  session_start();  include(''db.php''); //Database Connection.  if (!isset( Google Oauth登录系统开发示例_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
SESSION[''google_data''])) {  // Redirection to application home page.  header("location: index.php");  }  else {  //echo print_r($userdata);  $userdata= Google Oauth登录系统开发示例_网学
浏览:
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号
SESSION[''google_data''];  $email =$userdata[''email''];  $googleid =$userdata[''id''];  $fullName =$userdata[''name''];  $firstName=$userdata[''given_name''];  $lastName=$userdata[''family_name''];  $gplusURL=$userdata[''link''];  $avatar=$userdata[''picture''];  $gender=$userdata[''gender''];  $dob=$userdata[''birthday''];  //Execture query  $sql=mysql_query("insert into users(email,fullname,firstname,lastname,google_id,gender,dob,profile_image,gpluslink) values(''$email'',''$fullName'',''$firstName'',''$lastName'',''$googleid'',''$gender'',''$dob'',

  • 上一篇资讯: PHP 5.4.8 和 5.3.18 发布
  • 下一篇资讯: 并行的RPC框架
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号