呕心之作:支付宝的手机网站支付接口的应用

由于去年做手机Portl接口的工作,需要使用支付宝的支付,于是手机网站支付接口就成了首选。

1.首先下载接口包

 支付宝商家服务中心链接:https://b.alipay.com/login.htm?goto=https://b.alipay.com:443/newIndex.htm

  手机网站支付的产品介绍:https://b.alipay.com/order/productDetail.htm?productId=2013080604609688

  demo下载链接:https://doc.open.alipay.com/doc2/detail.htm?treeId=54&articleId=104511&docType=1   (请点击关键字demo,进行下载)

  

  解压下载的文件可以看到文件夹的结构如下图:

  

  我使用的是RSA签名方式,PHP-UTF-8的文件夹

2.readme.txt的文档说明

  红色字体的文件是最重要的文件,也是必需的!

│├lib┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈类文件夹│  ││  ├alipay_core.function.php ┈┈┈┈┈┈支付宝接口公用函数文件│  ││  ├alipay_notify.class.php┈┈┈┈┈┈┈支付宝通知处理类文件│  ││  ├alipay_submit.class.php┈┈┈┈┈┈┈支付宝各接口请求提交类文件│  ││  └alipay_rsa.function.php┈┈┈┈┈┈┈支付宝接口RSA函数文件│├log.txt┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈日志文件│├alipay.config.php┈┈┈┈┈┈┈┈┈┈┈┈基础配置类文件│├alipayapi.php┈┈┈┈┈┈┈┈┈┈┈┈┈┈支付宝接口入口文件│├notify_url.php ┈┈┈┈┈┈┈┈┈┈┈┈┈服务器异步通知页面文件│├return_url.php ┈┈┈┈┈┈┈┈┈┈┈┈┈页面跳转同步通知文件│├key┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈私钥公钥文件夹(用法见下方※注意※)│  ││  ├rsa_private_key.pem┈┈┈┈┈┈┈┈┈商户的私钥文件│  ││  └alipay_public_key.pem┈┈┈┈┈┈┈┈支付宝的公钥文件│├openssl┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈缺省dll文件(用法见下方※注意※)│  ││  ├libeay32.dll│  ││  ├ssleay32.dll│  ││  └php_openssl.dll│├cacert.pem ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈用于CURL中校验SSL的CA证书文件│└readme.txt ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈使用说明文本

3. 把必需的文件整合到框架里(我当时用的是thinkPHP框架)  (1)在

 里新建一个文件夹叫AliMobilePay,      

     把上图里的4个文件拷贝到AliMobilePay文件夹里,

      对以上文件进行重命名,

      alipay_core.function.php重命名为:Corefunction.php

      alipay_notify.class.php重命名为:Notify.php

      alipay_rsa.function.php重命名为:Rsafunction.php

      alipay_submit.class.php重命名为:Submit.php

      打开Notify.php,去掉一下代码,

      require_once("alipay_core.function.php");
      require_once("alipay_rsa.function.php");

      同样的道理去掉其他3个文件里的包含文件。

  (2)在根目录下建立一个文件夹key     在key文件夹里放入商户的私钥文件、支付宝的公钥文件、CA证书文件

        

       如何生成RSA密钥:https://cshall.alipay.com/enterprise/help_detail.htm?help_id=474010&keyword=%C8%E7%BA%CE%C9%FA%B3%C9%B9%AB%CB%BD%D4%BF&sToken=s-5d0c889ac47741fd8094b26d4862696b&from=search&flag=0  (此文中描述的rsa_private_key.pem就是商家的私钥文件)

         

      ◆商户的私钥
      1、不需要对刚生成的(原始的)私钥做pkcs8编码
      2、不需要去掉去掉“-----BEGIN RSA PRIVATE KEY-----”、“-----END RSA PRIVATE KEY-----”
      简言之,只要维持用openssl工具刚生成出来的私钥的内容即可。

      

      ◆支付宝公钥
      1、须保留“-----BEGIN PUBLIC KEY-----”、“-----END PUBLIC KEY-----”这两条文字。
      简言之,支付宝公钥只需要维持demo里的原样即可。

      

   (3)alipay_config.php 配置文件

      把alipay_config.php 配置文件整合到thinkPHP框架的配置文件里

      

<?php
/**
 * Created by PhpStorm.
 * User: zhangxiaoliu
 * Date: 16/4/15
 * Time: 上午10:39
 */
//支付宝商家服务中心链接:https://b.alipay.com/login.htm?goto=https://b.alipay.com:443/newIndex.htm
return array(
    ‘ALIMOBILEPAY_CONFIG‘=>array(
        //合作身份者id,以2088开头的16位纯数字, (合作身份者id的查看链接:https://b.alipay.com/order/pidAndKey.htm)
        ‘partner‘ => ‘2088XXXXXXXXXXXX‘,

        //收款支付宝账号,与partner的值一样
        ‘seller_id‘ => ‘2088XXXXXXXXXXXX‘,

        //商户的私钥(后缀是.pem)文件相对路径
        ‘private_key_path‘=> NEW_PORTAL_DOMAIN.‘key/rsa_private_key.pem‘,

        //支付宝公钥(后缀是.pem)文件相对路径
        ‘ali_public_key_path‘=> NEW_PORTAL_DOMAIN.‘key/alipay_public_key.pem‘,

        //签名方式 不需修改
        ‘sign_type‘ => strtoupper(‘RSA‘),

        //字符编码格式 目前支持 gbk 或 utf-8
        ‘input_charset‘=> ‘utf-8‘,

        //ca证书路径地址,用于curl中ssl校验
        ‘cacert‘ => NEW_PORTAL_DOMAIN.‘key/cacert.pem‘,

        //访问模式,根据自己的服务器是否支持ssl访问,若支持请选择https;若不支持请选择http
        ‘transport‘ => ‘http‘,

        //这里是异步通知页面url,提交到项目的Payment控制器的notifyurl方法;
        //需http://格式的完整路径,不能加?id=123这类自定义参数
        ‘notify_url‘=> NEW_PORTAL_DOMAIN.‘portal.php/AliMobilePay/notify_url.php‘,

        //这里是页面跳转通知url,提交到项目的Payment控制器的returnurl方法;
        //需http://格式的完整路径,不能加?id=123这类自定义参数
        ‘return_url‘=> NEW_PORTAL_DOMAIN.‘portal.php/AliMobilePay/return_url.php‘,

        //支付成功跳转到的页面
        ‘successpage‘=>NEW_PORTAL_DOMAIN.‘portal.php/Success/index‘,
        //支付失败跳转到的页面
        ‘errorpage‘=>NEW_PORTAL_DOMAIN.‘portal.php/Error/index‘,
        //商品展示地址
        ‘product_url‘=>NEW_PORTAL_DOMAIN.‘portal.php/Product/index‘,
    )
);

    (4)支付宝帮助中心

      https://cshall.alipay.com/enterprise/index.htm

4.调用支付宝接口

    (1)新建一个AliMobilePay控制器


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

<?php

namespace Portal\Controller;

use Common\Component\FilterComponent;

use Portal\Service\LogPaycallbacksService;

use Portal\Service\GuozhanOrderService;

use Portal\Model\Pengwifi\Guozhan\OrderModel;

use Portal\Service\TokenService;

use Portal\Service\UserService;

use Portal\Service\SetMotoRadiusService;

use Common\Model\Radius\RadcheckModel;

/*

 * 购买上网卡的手机页面支付宝接口

 */

class AliMobilePayController extends CommonController{

    protected $_order_model=null;

    protected $_order_service=null;

    protected $_token_service = null;

    protected $_Set_MotoRadius_service=null;

    protected $_RadcheckModel=null;

    protected $_log_pay_callbacks = null;

    protected function afterInit() {

        parent::afterInit();

        vendor(‘AliMobilePay.Corefunction‘);

        vendor(‘AliMobilePay.Rsafunction‘);

        vendor(‘AliMobilePay.Notify‘);

        vendor(‘AliMobilePay.Submit‘);

        $this->_order_model= new OrderModel();

        $this->_order_service= new GuozhanOrderService();

        $this->_log_pay_callbacks = new LogPaycallbacksService();

        $this->_service = new UserService();

        $this->_token_service = new TokenService();

        $this->_RadcheckModel = new RadcheckModel();

        $this->_Set_MotoRadius_service = new SetMotoRadiusService();

    }

    /**

     * 执行新增订单

     */

    protected function _post(){

        if(isset($this->params[‘name‘]) && ($this->params[‘name‘]=="notify_url")){

            $this->notify_url(‘notify_url‘);

            die;

        }

        $this->insert_order();

    }

    protected function _get(){

        /*

         *根据配置文件里的路由规则:

         *‘:‘.$var_controller.‘/[:name]/[:action]‘=>     ‘:1/_index?‘,   //匹配控制器后紧跟字符串,表示name

         * 例如:http://portal_v2.com/portal.php/Payment/Return.html

         * $notify_url会返回Return

         */

        $notify_url = isset($this->params[‘name‘]) ? FilterComponent::getString($this->params[‘name‘]) : ‘Unknown‘;

        switch($notify_url){

            case ‘return_url‘:

                $this->return_url($notify_url);

                break;

            default:

                $this->_log_pay_callbacks->update(array(‘request_from‘=>‘Unknown‘), false);

                exit(‘Wrong request url‘);

        }

    }

    

    //服务器异步通知页面方法

    private function notify_url($notify_url){

        $alipay_config = C(‘ALIMOBILEPAY_CONFIG‘);

        //计算得出通知验证结果

        $alipayNotify new \AlipayNotify($alipay_config);

        $verify_result $alipayNotify->verifyNotify();

        if($verify_result) {//验证成功

            //商户订单号

            $order_sn $this->params[‘out_trade_no‘];

            //支付宝交易号

            //$trade_no = $this->params[‘trade_no‘];

            //交易状态

            $trade_status $this->params[‘trade_status‘];

            $this->_log_pay_callbacks->update(array(‘request_from‘=>$notify_url‘order_sn‘=>$order_sn‘response_status‘=>$trade_status), false);

            if (in_array($trade_status,array(‘TRADE_SUCCESS‘,‘TRADE_FINISHED‘))) {

                //判断该笔订单是否在商户网站中已经做过处理

                //如果没有做过处理,根据订单号(out_trade_no)在商户网站的订单系统中查到该笔订单的详细,并执行商户的业务程序

                //如果有做过处理,不执行商户的业务程序

                 if(!$this->checkorderstatus($order_sn)){

                     $result=$this->orderhandle($order_sn);

                     if($result==true){

                         echo "success";

                     }else{

                         echo "fail";

                     }

                 }

            }else{

                echo "fail";

            }

        }else {

            //验证失败

            echo "fail";

        }

    }

    //页面跳转同步通知

    private function return_url($notify_url){

        $alipay_config=C(‘ALIMOBILEPAY_CONFIG‘);

        //计算得出通知验证结果

        $alipayNotify new \AlipayNotify($alipay_config);

        $verify_result $alipayNotify->verifyReturn();

        if($verify_result) {//验证成功

            //商户订单号

            $order_sn $this->params[‘out_trade_no‘];

            //支付宝交易号

            //$trade_no = $this->params[‘trade_no‘];

            //交易状态

            $trade_status $this->params[‘trade_status‘];

            $this->_log_pay_callbacks->update(array(‘request_from‘=>$notify_url‘order_sn‘=>$order_sn‘response_status‘=>$trade_status), false);

            if (in_array($trade_status,array(‘TRADE_SUCCESS‘,‘TRADE_FINISHED‘))) {

                //判断该笔订单是否在商户网站中已经做过处理

                //如果没有做过处理,根据订单号(out_trade_no)在商户网站的订单系统中查到该笔订单的详细,并执行商户的业务程序

                //如果有做过处理,不执行商户的业务程序

                if(!$this->checkorderstatus($order_sn)){

                    $result=$this->orderhandle($order_sn);

                    //——请根据您的业务逻辑来编写程序(以上代码仅作参考)——

                    if($result==true){

                        header("Location:".C(‘ALIMOBILEPAY_CONFIG.successpage‘));//跳转到配置项中配置的支付成功页面;

                    }else{

                        header("Location:".C(‘ALIMOBILEPAY_CONFIG.errorpage‘));//跳转到配置项中配置的支付失败页面;

                    }

                }

            }else {

                header("Location:".C(‘ALIMOBILEPAY_CONFIG.errorpage‘));//跳转到配置项中配置的支付失败页面;

            }

        }else {

            //支付宝页面“返回商户”按钮的链接,商品页面

            header("Location:".C(‘ALIMOBILEPAY_CONFIG.product_url‘));

        }

    }

    //在线交易订单支付处理函数

    //函数功能:根据支付接口传回的数据判断该订单是否已经支付成功;

    //返回值:如果订单已经成功支付,返回true,否则返回false;

    private function checkorderstatus($order_sn){

        $status=$this->_order_model->where("order_sn=‘$order_sn‘")->getField(‘order_status‘);

        if($status == OrderModel::ORDER_STATUS_PAYED){

            return true;

        }else{

            return false;

        }

    }

    //处理订单函数

    //更新订单状态,写入订单支付后返回的数据

    private function orderhandle($order_sn){

        try{

            //开启事务

            $this->_order_model->startTrans();

            $data[‘order_status‘]=OrderModel::ORDER_STATUS_PAYED;

            $affected_row=$this->_order_model->where("order_sn=‘$order_sn‘")->save($data);

            $find=$this->_order_model->where("order_sn=‘$order_sn‘")->field(‘location_id,goods_id,mobile,goods_number‘)->find();

            //根据goods_id查找card_name对应的上网时长

            $goods_model=M(‘goods‘);

            $card_model=M(‘card‘);

            $card_name=$goods_model->where("id={$find[‘goods_id‘]}")->getField(‘card_name‘);

            $duration=$card_model->where("location_id={$find[‘location_id‘]} and card_name=‘$card_name‘")->order(‘id desc‘)->getField(‘duration‘);

            $incre_time=($find[‘goods_number‘]) * $duration;

            $user_model=M(‘user‘);

            $mobile=$find[‘mobile‘];

            $user_info=$user_model->where("user_name=‘{$mobile}‘")->field(‘id,end_time‘)->find();

            $affected_row2=$user_model->where("user_name=‘{$mobile}‘")->setInc(‘usable_time‘,$incre_time);

            //如果end_time 大于当前的时间戳就累计,否则就更新:使用当前时间戳 加上 $incre_time

            if($user_info[‘end_time‘] >= time()){

                $user_model->where("user_name=‘{$mobile}‘")->setInc(‘end_time‘,$incre_time);

            }else{

                $update_data[‘end_time‘]=time()+$incre_time;

                $user_model->where("user_name=‘{$mobile}‘")->save($update_data);

            }

            if(empty($affected_row)){

                $this->_log_pay_callbacks->setException(L(‘ERROR_FAILED_UPDATE_ORDER‘), $this->_log_pay_callbacks->getException(‘code‘));

                throw new \Exception();

            }

            if(empty($affected_row2)){

                $this->_log_pay_callbacks->setException(L(‘ERROR_FAILED_UPDATE_USABLETIME‘), $this->_log_pay_callbacks->getException(‘code‘));

                throw new \Exception();

            }

            //提交更新

            if($affected_row && $affected_row2) {

                $this->_order_model->commit();

                return true;

            }

        }catch(\Exception $e){

            $this->_order_model->rollback();

            return false;

        }

    }

    private function insert_order(){

        $gw_id = isset($this->params[‘gw_id‘]) ? FilterComponent::get($this->params[‘gw_id‘]) : ‘‘;

        if (empty($gw_id)) {

            exit(‘400_EMPTY_GWID‘);

        }

        $router=M(‘router‘);

        $location_id=$router->where("gw_id=‘$gw_id‘")->getField(‘supplier_location_id‘);

        $goods_number = isset($this->params[‘goods_number‘]) ? FilterComponent::get($this->params[‘goods_number‘],‘int‘) : ‘‘;

        if (empty($goods_number)) {

            exit(‘400_EMPTY_GOODSNUMBER‘);

        }

        $mobile = isset($this->params[‘mobile‘]) ? FilterComponent::get($this->params[‘mobile‘]) : ‘‘;

        if (!preg_match(‘/^1[0-9]{10}$/‘,$mobile)) {

            exit(‘400_ERROR_MOBILE‘);

        }

        $user=M(‘user‘);

        //查询充值号码是否存在

        $user_name=$user->where("user_name=‘$mobile‘")->getField(‘user_name‘);

        if(!$user_name){

            exit(‘400_EMPTY_USERNAME‘);

        }

        $goods_id = isset($this->params[‘goods_id‘]) ? FilterComponent::get($this->params[‘goods_id‘],‘int‘) : ‘‘;

        if (empty($goods_id)) {

            exit(‘400_EMPTY_GOODSID‘);

        }

        $goods=M(‘goods‘);

        $unit_price=$goods->where("id=$goods_id")->getField(‘unit_price‘);

        $this->params[‘WIDtotal_fee‘]=$unit_price $goods_number;

        $data[‘location_id‘]=$location_id;

        $data[‘mobile‘]=$mobile;

        $data[‘goods_id‘]=$goods_id;

        $data[‘goods_type‘]=1;//1代表充值卡

        $data[‘goods_number‘]=$goods_number;

        $data[‘total_price‘]=$this->params[‘WIDtotal_fee‘];

        $data[‘pay_type‘]=OrderModel::PAY_TYPE_ALIPAY;//支付宝

        //执行添加操作

        $insert_id=$this->_order_service->update($data,false);

//        var_dump($this->_order_service->getError());

//        var_dump($this->_order_service->model->getError());

//        var_dump($this->_order_service->model->getlastsql());die;

        if($insert_id){

            $this->params[‘WIDout_trade_no‘]=$this->_order_model->where("id=$insert_id")->getField(‘order_sn‘);

            /**************************请求参数**************************/

            //支付类型

            $payment_type "1";

            //必填,不能修改

            //商户订单号

            $out_trade_no $this->params[‘WIDout_trade_no‘];

            //商户网站订单系统中唯一订单号,必填

            $this->params[‘WIDsubject‘]=‘pengwifi_card‘;

            //订单名称

            $subject $this->params[‘WIDsubject‘];

            //必填

            //付款金额

            $total_fee $this->params[‘WIDtotal_fee‘];

            //必填

            //$this->params[‘WIDshow_url‘]=trim(C(‘ALIMOBILEPAY_CONFIG.product_url‘));

            $this->params[‘WIDshow_url‘]=$_SERVER[‘HTTP_REFERER‘];

            //商品展示地址

            $show_url $this->params[‘WIDshow_url‘];

            //必填,需以http://开头的完整路径,例如:http://www.商户网址.com/myorder.html

            //订单描述

            $body $this->params[‘WIDbody‘];

            //选填

            //超时时间

            $it_b_pay $this->params[‘WIDit_b_pay‘];

            //选填

            //钱包token

            $extern_token $this->params[‘WIDextern_token‘];

            //选填

            /************************************************************/

            //构造要请求的参数数组,无需改动

            $parameter array(

                "service" => "alipay.wap.create.direct.pay.by.user",

                "partner" => trim(C(‘ALIMOBILEPAY_CONFIG.partner‘)),

                "seller_id" => trim(C(‘ALIMOBILEPAY_CONFIG.seller_id‘)),

                "payment_type"  => $payment_type,

                "notify_url"    => trim(C(‘ALIMOBILEPAY_CONFIG.notify_url‘)),

                "return_url"    => trim(C(‘ALIMOBILEPAY_CONFIG.return_url‘)),

                "out_trade_no"  => $out_trade_no,

                "subject"   => $subject,

                "total_fee" => $total_fee,

                "show_url"  => $show_url,

                "body"  => $body,

                "it_b_pay"  => $it_b_pay,

                "extern_token"  => $extern_token,

                "_input_charset"    => trim(strtolower(C(‘input_charset‘)))

            );

            $alipay_config=C(‘ALIMOBILEPAY_CONFIG‘);

            //建立请求

            $alipaySubmit new \AlipaySubmit($alipay_config);

            //建立请求,以表单HTML形式构造(默认),经测试post方法不行

            $html_text $alipaySubmit->buildRequestForm($parameter,"get""确认");

            echo $html_text;

        }else{

            echo ‘fail‘;

        }

    }

}

如果您阅读过此文章有所收获,请为我顶一个,如果文章中有错误的地方,欢迎指出。

相互学习,共同进步!

时间: 2024-10-24 11:41:11

呕心之作:支付宝的手机网站支付接口的应用的相关文章

支付宝的手机网站支付接口的应用

由于去年做手机Portl接口的工作,需要使用支付宝的支付,于是手机网站支付接口就成了首选. 1.首先下载接口包 手机网站支付的产品介绍:https://b.alipay.com/order/productDetail.htm?productId=2013080604609688 demo下载链接:https://doc.open.alipay.com/doc2/detail.htm?treeId=54&articleId=104511&docType=1   (请点击关键字demo,进行下

支付宝手机网站支付接口API之C#版

一.准备工作 1.使用企业支付宝签约手机网站支付 2.下载支付宝官方demo 文档地址:https://doc.open.alipay.com/doc2/detail?treeId=60&articleId=103564&docType=1 下载地址:http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/demo/alipaywapdirect.zip?spm=a219a.7629140.0.0.shXF72&fil

支付宝手机网站支付接口 FOR ECShop

支付宝WAP网站版本的支付接口网上整合的比较少,看到很多网站在卖,顿觉无语. 主要是得自己查看支付宝官方提供的SDK中的开发文档. 支付宝sdk下载地址:http://club.alipay.com/read-htm-tid-9976972.html 1. 要使用支付宝手机网站支付接口,除了要配置基本的帐号外,还必须配置openssl密钥文件.关于key的生成,一定要看文档,在此不详述.文档上演示的在线上传key的界面地址为:https://mobiless.alipay.com/home/in

C#版支付宝手机网站支付接口API之(转)

C#版支付宝手机网站支付接口API之 2018年03月03日 15:59:25 liutong123987 阅读数:3072 2018年03月03日 15:59:25 liutong123987 阅读数:3072 支付宝手机网站支付接口API之C#版 一.准备工作 1.使用企业支付宝签约手机网站支付 2.下载支付宝官方demo 文档地址:https://doc.open.alipay.com/doc2/detail?treeId=60&articleId=103564&docType=1

支付宝——手机网站支付接口研究

一 API版本说明 下面是官网的说明: 做个简单说明: API1.0接口主要用于网站(包括手机端的网站)的调用:API2.0主要用于手机app的调用.根据我们做的手机端网站的接口开发,主要使用API1.0接口. API1.0接口的请求参数如下: 根据上面的请求参数做开发前的准备工作. 二 开发准备工作 2.1 首先需要注册支付宝企业账户 详细步骤参考支付宝企业版官网注册. 2.2 PID(partner_id的简称),合作伙伴身份 由于我没有注册企业账户,就用一下官网的截图 2.3 密钥(签名)

支付宝手机网站支付接口本地测试总结

java,utf-8,MD5加密集成: 以前没接触过第三方的东西,直接做手机网站支付有很多障碍,很多地方不懂,走了很多弯路.其实东西不难,总结一下. 1,首先弄明白是什么样的需求,先了解一下支付宝商家服务里面的产品,看看哪个是符合自己的需求,支付宝的商家产品里面有很多,即时到账,担保交易,移动支付,手机网站支付等,选择一款适合自己的商品,签约. 2,在签约管理里面能看见选择产品的签约进度,一般签约一个产品等待申请的时间少于5天. 3,在签约管理里面找到 点击查看PID | Key后,会给绑定该支

支付宝接口开发-手机网站支付-沙箱测试

前面一段时间,因为公司业务需求,需要使用支付宝的手机网站支付接口,因为自己也是第一次使用这个,中间走了不少弯路,现在总结一下,希望对遇到同样问题的朋友有帮助. 第一步:登录蚂蚁金服开放平台蚂蚁金服开放平台连接,在这里你可以使用自己的支付宝进行登录,也可以使用公司的企业账号登录(建议公司的企业账号登录) 登录之后页面如下: 第二步:进入开发者中心,在上面图片上可以看到菜单 在这里你可以选择创建应用,也可以直接使用沙箱环境测试,沙箱环境和自己创建应用的效果是差不多的[应用测创建,只需要跟着网页提示进

tp3.2 支付宝手机网站支付

手机网站支付接口,支付宝官方文档:https://b.alipay.com/signing/productSet.htm?navKey=all 第一步: 1)登陆支付宝企业账号 进入支付宝官网 ,登陆已进行过实名认证的企业账号. 2)选择支付产品 进入支付宝产品大全页面,选择"手机网页支付",点击"立即签约". 3) 完善申请资料 将需申请支付的网址.联系人信息填写完成后提交,等待支付宝审核. 4) 申请通过 支付宝会在 5 个工作日内完成审核,审核完成后将以短信及

支付宝支付之扫码支付(电脑网站支付)、H5支付(手机网站支付)相关业务流程分析总结

前言 在上一篇文章<微信支付之扫码支付.公众号支付.H5支付.小程序支付相关业务流程分析总结>中,分析和总结了微信支付相关支付类型的业务流程,这里作为与微信支付平起平坐不相伯仲的支付宝支付,当然也是每个公司少不了的第三方支付接入选择. 因此,本篇文章主要分析和总结支付宝支付中的扫码支付.H5支付相关业务流程. 概述 1. 电脑网站支付 电脑网站支付,也称扫码支付,是专门针对电脑而开发的一种支付方式,既在网页展示一个动态生成的支付二维码,用户通过手机支付宝扫码以后可实现支付功能的一种支付方式.