ecshop接入支付宝快捷登录

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家

1、下载支付宝的快捷登录的代码包

①在alipay.config.php文件里,把$aliapy_config['partner']、$aliapy_config['key']设置好。

然后加入以下代码:

if($_GET["type"]=="user"){
$aliapy_config['return_url']= 'http://127.0.0.1/alipayLogin/user_url.php';
}
else{
$aliapy_config['return_url']= 'http://127.0.0.1/alipayLogin/return_url.php';
}

②在return_url.php的头文件引用中,添加注释一下语句:

//header('Content-Type: text/html; charset=UTF-8');(注释这一行)
define('IN_ECS', true);(添加)
require('../includes/init.php');(添加)
include_once('../includes/lib_transaction.php');(添加)
include_once('../includes/lib_passport.php');(添加)
require_once("alipay.config.php");(添加)
require_once("lib/alipay_notify.class.php");(添加)

......

......

......

......

......


文章版权:本文转自http://course.yuanspace.net/148.html,点击看详细教程。

回答:
能不能与现有会员绑定?

ECSHOP学习资料:http://www.phpally.com

这种代码最好别粘贴出来。如果整合了UC.是不是直接挂了?会员注册?

/*插入数据库*/
$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')");

看来考虑的周啊!