网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > 网络知识 > 正文

Ecshop集成新浪微博登录插件教程分享

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 14/06/29

鉴于大家对网络知识十分关注,我们编辑小组在此为大家搜集整理了“Ecshop集成新浪微博登录插件教程分享”一文,供大家参考学习!

  近网站想添加新浪微博登录功能,于是在网上搜索了下,下载了一个插件的放我网站里面没效果,所以觉定自己动手试试,本人php新手说得不到之处还望大侠高手们多多指教。

  1.先去http://open.weibo.com/ 这里申请app

  2.下载最新http://code.google.com/p/libweibo/downloads/list插件包

   2.1其中需要修改config.php文件

 define( "WB_AKEY" , ''申请的到的key );
define( "WB_SKEY" , ''相对应的App Secret'' );
define( "WB_CALLBACK_URL" , ''http://域名/login/callback.php'' );

   2.2 修改文件callback.php ,将此处代码复制全部替换

<?php
session_start();
define(''IN_ECS'', true);
require(''../includes/init.php'');
include_once(''../includes/lib_transaction.php'');
include_once(''../includes/lib_passport.php'');

include_once( ''config.php'' );
include_once( ''saetv2.ex.class.php'' );

$o = new SaeTOAuthV2( WB_AKEY , WB_SKEY );

if (isset( Ecshop集成新浪微博登录插件教程分享_网学
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号
REQUEST[''code''])) {
$keys = array();
$keys[''code''] = Ecshop集成新浪微博登录插件教程分享_网学
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号
REQUEST[''code''];
$keys[''redirect_uri''] = WB_CALLBACK_URL;
try {
$token = $o->getAccessToken( ''code'', $keys ) ;
} catch (OAuthException $e) {
}
}


if ($token) {
Ecshop集成新浪微博登录插件教程分享_网学
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号
SESSION[''token''] = $token;
setcookie( ''weibojs_''.$o->client_id, http_build_query($token) );

$c = new SaeTClientV2( WB_AKEY , WB_SKEY , Ecshop集成新浪微博登录插件教程分享_网学
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号
SESSION[''token''][''access_token''] );
$ms = $c->home_timeline(); // done
$uid_get = $c->get_uid();
$uid = $uid_get[''uid''];
$user_message = $c->show_user_by_id( $uid);//根据ID获取用户等基本信息



function check_user($username){
$sql = "SELECT user_id, password, salt " .
" FROM " . $GLOBALS[''ecs'']->table("users").
" WHERE user_name=''$username''";
$row = $GLOBALS[''db'']->getRow($sql);
if (!empty($row)){
return true;
}else{
return false;
}
}
if($user_message[''screen_name'']!==""){ //获取微薄昵称
$username=$user_message[''screen_name''];
$password=time();//随便弄个密码 反正没有用
$email=''123456@163.com'';//随便默认个邮箱
$back_act ="/user.php";
if (check_user($username)!==false){
$GLOBALS[''user'']->set_session($username);
$GLOBALS[''user'']->set_cookie($username);
header("Location: /user.php\n"); //验证成功,跳转页面
exit;
}else{
$reg_date = time();
$password =md5($password);
$ip=real_ip();
$GLOBALS[''db'']->query(''INSERT INTO '' . $GLOBALS[''ecs'']->table("users") . "(`email`, `user_name`, `password`, `reg_time`, `last_login`, `last_ip`) VALUES (''$email'', ''$username'', ''$password'', ''$reg_date'', ''$reg_date'', ''$ip'')");
$GLOBALS[''user'']->set_session($username);
$GLOBALS[''user'']->set_cookie($username);
header("Location: /user.php\n");
exit;
}
}else{
echo ''fail'';
exit;
}
?>

<?php
} else {
?>
授权失败。
<?php
}
?>

  修改的就这两文件,其中weibolist.php可以删除。

  3.然后将config.php、callback.php、index.php、saetv2.ex.class.php四个文件放login文件夹上传空间就行了。

  到这基本就完成了功能了,希望对有需要的站长有所帮助。

  本文作者分享演示站:http://www.diy520.cn

网学推荐

免费论文

原创论文

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