IOS接入支付宝
支付宝APP支付的流程
- 服务端拼接Order String, 对Order String进行SHA1withRSA签名并返回给APP,注意此时服务端并没有向支付宝发起请求。
- APP调用支付宝的SDK,传入Order String进行支付。
- 支付成功之后,本地APP支付宝同步传回的result。服务端异步收到支付宝的消息。
SHA1withRSA 参考:
http://www.tuicool.com/articles/eUvERfr
PYTHON SDK参考:
https://github.com/fengli/alipay_python/tree/master/alipay
支付宝官方文档参数解释:
https://doc.open.alipay.com/docs/doc.htm?spm=a219a.7629140.0.0.7EXEvQ&treeId=204&articleId=105465&docType=1#s2
回调接口验签:
https://doc.open.alipay.com/docs/doc.htm?spm=a219a.7629140.0.0.zoHjWN&treeId=204&articleId=105301&docType=1
支付宝开发后台配置:
https://doc.open.alipay.com/doc2/detail.htm?treeId=200&articleId=105310&docType=1
Pycrypto与RSA密码技术笔记
http://www.jianshu.com/p/6a39610122fa
转载随意~:陶醉 » 支付宝APP支付的流程