YaseiAkira.Alipay 1.0.0.2

dotnet add package YaseiAkira.Alipay --version 1.0.0.2
NuGet\Install-Package YaseiAkira.Alipay -Version 1.0.0.2
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="YaseiAkira.Alipay" Version="1.0.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add YaseiAkira.Alipay --version 1.0.0.2
#r "nuget: YaseiAkira.Alipay, 1.0.0.2"
#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 YaseiAkira.Alipay as a Cake Addin
#addin nuget:?package=YaseiAkira.Alipay&version=1.0.0.2

// Install YaseiAkira.Alipay as a Cake Tool
#tool nuget:?package=YaseiAkira.Alipay&version=1.0.0.2

支付宝支付接口,目前只有APP支付,后续会新增

Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.0.2 337 3/23/2021
1.0.0.1 292 3/17/2021

支付宝支付接口,封装了 Alipay Easy SDK,目前只有APP支付,后续会新增

   使用
   1.APP支付
       /// 参数 name="privateKey" 商户私钥
       /// param name="commonParams" 公共参数其他非必填数据,如 app_auth_token 等
       /// param name="bizContentOtherParams" 请求参数其他非必填参数,如 goods_type,store_id等
       /// 返回值说明
       /// Success:是否生成支付Body字符串成功
       /// Message:成功为空字符串,失败则是错误消息
       /// Data:调起APP支付用的 Body 字符串
   APPPay.Pay(appId,
           subject,
           outTradeNo,
           total,
           notifyUrl,
           privateKey,
           commonParams,
           bizContentOtherParams);