npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-alipay-f2f-sdk

v1.2.1

Published

alipay_face2face sdk for nodejs

Downloads

6

Readme

Install 安装

use npm isntall

使用npm安装

npm install node-alipay-f2f-sdk

download from github

从github下载

Introduce 模块说明

该模块目前仅支持支付宝RSA加密方式,支持面对面支付大部分接口,biz_content参数同支付宝,见支付宝文档,公共请求参数只需设置notify_url,app_auth_token,也可不进行设置,请求结果返回promise对象

Set RSA2(RSA-SHA256) public key 加密公钥设置

进入应用页面设置接口加签方式,使用其他加签方式,上传公钥证书,或者复制年黏贴公钥证书(复制黏贴注意去掉多余空格)

Sample example 使用说明

init Client 初始化支付宝客户端

var alipay=require('node-alipay-f2f-sdk').initClient({
	private_key:private_key,//您的应用私钥文件,或者私钥字符串,必填
	app_id:app_id//支付宝应用号,必填
});

Pay(bar_code,wave_code ) 统一收单交易支付接口(条码支付)

/**
 * 发起条码支付
 * @param  {[String]} biz_content [请求参数的集合]
 * @param {[String]} notify_url [通知地址]
 * @param {[String]} app_auth_token [应用授权]
 * biz_content常用参数,其它参数详见支付宝文档
 * biz_content:{
		"out_trade_no",//商户订单号,64个字符以内、可包含字母、数字、下划线;需保证在商户端不重复
		"scene ",//条码支付,取值:bar_code 声波支付,取值:wave_code
		"subject"//	订单标题
		"auth_code"//支付授权码,25~30开头的长度为16~24位的数字,实际字符串长度以开发者获取的付款码长度为准
		"total_amount"//订单总金额,单位为元,精确到小数点后两位
	}
 */
alipay.pay({
	biz_content:{
		out_trade_no:"10010",
		scene:"bar_code",
		auth_code:"286526299255235346",
		subject:"测试标题",
		total_amount:0.01			
	}
})
.then(function(body){
	console.log(body);
})

payH5 手机网站h5支付

/**
 * 手机网站h5支付
 * @author penguinhj
 * @DateTime 2019-09-03T10:12:39+0800
 * @param  {[String]} biz_content [请求参数的集合]
 * @param {[String]} return_url [支付成功后跳转地址]
 * @param {[String]} notify_url [通知地址]
 * @param {[String]} app_auth_token [应用授权]
 * biz_content常用参数,其它参数详见支付宝文档
 * biz_content:{
		"out_trade_no",//商户订单号,64个字符以内、可包含字母、数字、下划线;需保证在商户端不重复
		"subject"//	订单标题
		"total_amount"//订单总金额,单位为元,精确到小数点后两位
	}
 */
var payH5 = function(){
	alipay.payH5({
		return_url:"http://www.baidu.com",
		biz_content:{
			out_trade_no:"10013",
			subject:"测试标题",
			total_amount:0.01
		}
	})
	.then(function(body){
		console.log(body);
	})
	
}

precreate 统一收单线下交易预创建

/**
 * 统一收单线下交易预创建
 * @param  {[String]} biz_content [请求参数的集合]
 * @param {[String]} notify_url [通知地址]
 * @param  {[String]} app_auth_token [应用授权地址]
 * biz_content常用参数,其它参数详见支付宝文档
 * biz_content:{
		"out_trade_no",//商户订单号,64个字符以内、可包含字母、数字、下划线;需保证在商户端不重复
		"subject"//	订单标题
		"total_amount"//订单总金额,单位为元,精确到小数点后两位
	}
 */
alipay.precreate({
	biz_content:{
		out_trade_no:"10012",
		subject:"测试标题",
		total_amount:0.01
	}
})
.then(function(body){
	console.log(body);
})

appPay app支付接口

/**
 * app支付接口
 * @author penguinhj
 * @DateTime 2019-09-03T10:12:39+0800
 * @param  {[String]} biz_content [请求参数的集合]
 * @param {[String]} return_url [支付成功后跳转地址]
 * @param {[String]} notify_url [通知地址]
 * @param {[String]} app_auth_token [应用授权]
 * biz_content常用参数,其它参数详见支付宝文档
 * biz_content:{
		"out_trade_no",//商户订单号,64个字符以内、可包含字母、数字、下划线;需保证在商户端不重复
		"subject"//	订单标题
		"total_amount"//订单总金额,单位为元,精确到小数点后两位
	}
 */
alipay.appPay({
	biz_content:{
		out_trade_no:"xxxx",
		subject:"测试标题",
		total_amount:0.01,
		body:"描述",
		goods_detail:[{
			goods_id:"apple-01",
			goods_name:"ipad",
			quantity:1,
			price:2000
		}]
	}
})
.then(function(body){
	console.log(body);
})

query 统一收单线下交易查询

/**
 * 统一收单线下交易查询
 * @param  {[String]} biz_content [请求参数的集合]
 * @param {[String]} app_auth_token [应用授权]
 * biz_content常用参数,其它参数详见支付宝文档
 * biz_content:{
		"out_trade_no",//订单支付时传入的商户订单号,和支付宝交易号不能同时为空。 trade_no,out_trade_no如果同时存在优先取trade_no
		"trade_no"//支付宝交易号,和商户订单号不能同时为空
	}
 */
alipay.query({
	biz_content:{
		out_trade_no:"10010"
	}
})
.then(function(body){
	console.log(body);
})

cancel 统一收单交易撤销接口

/**
 * 统一收单交易撤销接口
 * @param  {[String]} biz_content [请求参数的集合]
 * @param {[String]} app_auth_token [应用授权]
 * biz_content常用参数,其它参数详见支付宝文档
 * biz_content:{
		"out_trade_no",//订单支付时传入的商户订单号,和支付宝交易号不能同时为空。 trade_no,out_trade_no如果同时存在优先取trade_no
		"trade_no"//支付宝交易号,和商户订单号不能同时为空
	}
 */
alipay.cancel({
	biz_content:{
		out_trade_no:"10012"
	}
})
.then(function(body){
	console.log(body);
})

refund 统一收单交易退款接口

/**
 * 统一收单交易退款接口
 * @param  {[String]} biz_content [请求参数的集合]
 * @param  {[String]} app_auth_token [应用授权地址]
 * biz_content常用参数,其它参数详见支付宝文档
 * biz_content:{
		"out_trade_no",//订单支付时传入的商户订单号,和支付宝交易号不能同时为空。 trade_no,out_trade_no如果同时存在优先取trade_no
		"trade_no"//支付宝交易号,和商户订单号不能同时为空
		"refund_amount"//需要退款的金额,该金额不能大于订单金额,单位为元,支持两位小数
	}
 */
alipay.refund({
	biz_content:{
		out_trade_no:"10013",
		refund_amount:0.01
	}
})
.then(function(body){
	console.log(body);
})