PaymentKit 1.0.5

dotnet add package PaymentKit --version 1.0.5
NuGet\Install-Package PaymentKit -Version 1.0.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PaymentKit" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PaymentKit --version 1.0.5
#r "nuget: PaymentKit, 1.0.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install PaymentKit as a Cake Addin
#addin nuget:?package=PaymentKit&version=1.0.5

// Install PaymentKit as a Cake Tool
#tool nuget:?package=PaymentKit&version=1.0.5

使用说明

1. 支付链接生成
PaymentContext context = PaymentContext.Alipay(new AlipayConfig());
or
PaymentContext context = PaymentContext.Tenpay(new TenpayConfig());

var json = await context.GenerateToJSONAsync("ORDER20171028123456999", 0.01m, "http://localhost:8001", "title", "description");

支付宝配置 : sellerId,partnerId,privateKey

财付通(微信支付)配置 : appId,partnerId,partnerKey等信息。

返回值 : 支付宝:直接返回的字符串可供App直接呼出。 : 财付通:将App中需要的数据(noncestr,package,partnerid,prepayid,sign,timestamp等)打包成json返回。

2. 支付回调处理
public string Validate<T>(T result, Action<IDictionary<string, string>> success, Action<IDictionary<string, string>, string> failure);
  • result:支付商回调数据。

  • success:解析成功回调,参数一是传入的回调参数。

  • failure:解析成功的回调,参数一是传入的回调参数,参数二是错误信息。

  • 返回值:可直接返回给支付商的数据。

传入数据类型及获取方式 : 支付宝:System.Collections.Specialized.NameValueCollection(Request.HttpContext.Request.Form)

: 财付通(微信):System.IO.Stream(Request.InputStream) or System.Xml.Linq.XDocument(XDocument.Load(Request.InputStream))

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.5 1,369 10/29/2017