.NET Core之微信支付之公众号、H5支付详解

2025-05-29 0 46

前言

本篇主要记录微信支付公众号H5支付全过程。

准备篇

公众号或者服务号(并开通微信支付功能)、商户平台中开通JSAPI支付、H5支付

配置篇

公众号或者服务号中 ——-开发——-开发者工具———web开发者工具——-绑定为开发者

公众号或者服务号中 ——-公众号设置——–功能设置 :填写业务域名、JS安全域名、网页授权域名 示例:pay.one.com

商户平台中——–产品中心——-开发配置——JSAPI支付授权目录填写:http://pay.one.com/ http://pay.one.com/WeChatPay/PubPay/—–H5支付填写:pay.one.com

.NET Core之微信支付之公众号、H5支付详解

.NET Core之微信支付之公众号、H5支付详解

.NET Core之微信支付之公众号、H5支付详解

若对配置还有疑问,可参考官方文档:

https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140842

https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=7_7&index=6

开发篇

JSAPI支付

本Demo是基于Payment 的SDK开发。具体详情可参考: https://github.com/Essensoft/Payment

首先 使用Nuget安装payment:

Install-Package :Essensoft.AspNetCore.Payment.WeChatPay -Version 2.3.2

建一个Model: WeChatPayPubPayViewModel

?

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
public class WeChatPayPubPayViewModel

{

[Required]

[Display(Name = "out_trade_no")]

public string OutTradeNo { get; set; }

[Required]

[Display(Name = "body")]

public string Body { get; set; }

[Required]

[Display(Name = "total_fee")]

public int TotalFee { get; set; }

[Required]

[Display(Name = "spbill_create_ip")]

public string SpbillCreateIp { get; set; }

[Required]

[Display(Name = "notify_url")]

public string NotifyUrl { get; set; }

[Required]

[Display(Name = "trade_type")]

public string TradeType { get; set; }

[Required]

[Display(Name = "openid")]

public string OpenId { get; set; }

}

WeChatPayController:

?

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
//微信支付请求客户端(用于处理请求与响应)

private readonly IWeChatPayClient _client;

private readonly ILogger<WeChatPayController> _logger;

private IHttpContextAccessor _accessor;

public WeChatPayController(IWeChatPayClient client, IHttpContextAccessor accessor, ILogger<WeChatPayController> logger)

{

_client = client;

_accessor = accessor;

_logger = logger;

}

/// <summary>

/// 公众号支付

/// </summary>

/// <returns></returns>

[HttpGet]

public IActionResult PubPay()

{

WeChatPayPubPayViewModel payModel=new WeChatPayPubPayViewModel()

{

Body = "微信公众号支付测试",

OutTradeNo = DateTime.Now.ToString("yyyyMMddHHmmssfff"),

TotalFee = 1,//分 单位

SpbillCreateIp = "127.0.0.1",

NotifyUrl = "http://pay.one.com/notify/wechatpay/unifiedorder",

TradeType = "JSAPI",

OpenId = "" //此处需进行授权 获取OpenId

};

return View(payModel);

}

/// <summary>

/// 公众号支付

/// </summary>

/// <param name="viewModel"></param>

/// <returns></returns>

[HttpPost]

public async Task<IActionResult> PubPay(WeChatPayPubPayViewModel viewModel)

{

if(string.IsNullOrEmpty(viewModel.OpenId))

{

ViewData["response"] = "请返回上级重新进入此页面以获取最新数据";

return View();

}

var request = new WeChatPayUnifiedOrderRequest

{

Body = viewModel.Body,

OutTradeNo = viewModel.OutTradeNo,

TotalFee = viewModel.TotalFee,

SpbillCreateIp = viewModel.SpbillCreateIp,

NotifyUrl = viewModel.NotifyUrl,

TradeType = viewModel.TradeType,

OpenId = viewModel.OpenId //此处需进行授权 获取OpenId

};

var response = await _client.ExecuteAsync(request);if (response.ReturnCode == "SUCCESS" && response.ResultCode == "SUCCESS")

{

var req = new WeChatPayH5CallPaymentRequest

{

Package = "prepay_id=" + response.PrepayId

};

var parameter = await _client.ExecuteAsync(req);

// 将参数(parameter)给 公众号前端 让他在微信内H5调起支付(https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=7_7&index=6)

ViewData["parameter"] = JsonConvert.SerializeObject(parameter);

ViewData["response"] = response.Body;

return View();

}

ViewData["response"] = response.Body;

return View();

}

注意:公众号或者微信内支付,需要授权获取到用户的OpenId。所以,此处我们还需要进行微信授权,而授权方式有两种,一种是静默授权、一种是需要用户同意,区别是 静默授权只能拿到Openid,而经用户同意后可拿到 微信头像、昵称、性别等其他信息。

具体可参阅文档: https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140842

页面:

?

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
@using Newtonsoft.Json

@model WeChatPayPubPayViewModel

@{

ViewData["Title"] = "公众号支付-统一下单";

}

<nav aria-label="breadcrumb">

<ol class="breadcrumb">

<li class="breadcrumb-item"><a asp-controller="WeChatPay" asp-action="Index">微信支付</a></li>

<li class="breadcrumb-item active" aria-current="page">@ViewData["Title"]</li>

</ol>

</nav>

<br />

<div class="card">

<div class="card-body">

<form asp-controller="WeChatPay" asp-action="PubPay">

<div asp-validation-summary="All" class="text-danger"></div>

<div class="form-group">

<label asp-for="OutTradeNo"></label>

<input type="text" class="form-control" asp-for="OutTradeNo" value="@Model?.OutTradeNo" />

</div>

<div class="form-group">

<label asp-for="Body"></label>

<input type="text" class="form-control" asp-for="Body" value="@Model?.Body" />

</div>

<div class="form-group">

<label asp-for="TotalFee"></label>

<input type="text" class="form-control" asp-for="TotalFee" value="@Model?.TotalFee" />

</div>

<div class="form-group">

<label asp-for="SpbillCreateIp"></label>

<input type="text" class="form-control" asp-for="SpbillCreateIp" value="@Model?.SpbillCreateIp" />

</div>

<div class="form-group">

<label asp-for="NotifyUrl"></label>

<input type="text" class="form-control" asp-for="NotifyUrl" value="@Model?.NotifyUrl" />

</div>

<div class="form-group">

<label asp-for="TradeType"></label>

<input type="text" class="form-control" asp-for="TradeType" value="@Model?.TradeType" />

</div>

<div class="form-group">

<label asp-for="OpenId"></label>

<input type="text" class="form-control" asp-for="OpenId" value="@Model?.OpenId" />

</div>

<button type="submit" class="btn btn-primary">提交请求</button>

<button type="button" class="btn btn-success" id="PayNow">立即支付</button>

</form>

<hr />

<form class="form-horizontal">

<div class="form-group">

<label>Response:</label>

<textarea class="form-control" rows="10">@ViewData["response"]</textarea>

</div>

<div class="form-group">

<label>Parameter:</label>

<textarea class="form-control" rows="3">@ViewData["parameter"]</textarea>

</div>

</form>

</div>

</div>

@section Scripts {

@{await Html.RenderPartialAsync("_ValidationScriptsPartial"); }

}

<script src="~/lib/jquery/dist/jquery.min.js"></script>

<script type="text/javascript">

$(function () {

$("#PayNow").on('click', function () {

const local = "http://pay.one.com/WeChatPay/PayBack/";

window.location.href ='https://open.weixin.qq.com/connect/oauth2/authorize?appid=@ViewBaig.AppId&redirect_uri=' + encodeURIComponent(local)+'&response_type=code&scope=snsapi_base&state=a#wechat_redirect';

});

});

</script>

此时:PayBack Action如下:

?

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
[HttpGet]

public async Task<IActionResult> PayBack()

{

var code = Request.Query["code"];

var state = Request.Query["state"];

OAuthToken tokenModel = new OAuthToken();

//通过code换取token

if (!string.IsNullOrEmpty(code))

{

_logger.LogWarning("授权成功");

ViewBag.Code = code;

tokenModel = OauthApi.GetAuthToken(code, wechatAppId);

}

var request = new WeChatPayUnifiedOrderRequest

{

Body = "微信公众号支付测试",

OutTradeNo = DateTime.Now.ToString("yyyyMMddHHmmssfff"),

TotalFee = 1,//分 单位

SpbillCreateIp = "127.0.0.1",

NotifyUrl = "http://pay.one.com/notify/wechatpay/unifiedorder",

TradeType = "JSAPI",

OpenId = tokenModel.Openid //此处需进行授权 获取OpenId

};

var response = await _client.ExecuteAsync(request);

_logger.LogWarning($"统一下单接口返回:{response.ReturnCode}");

if (response.ReturnCode == "SUCCESS" && response.ResultCode == "SUCCESS")

{

var req = new WeChatPayH5CallPaymentRequest

{

Package = "prepay_id=" + response.PrepayId

};

var parameter = await _client.ExecuteAsync(req);

// 将参数(parameter)给 公众号前端 让他在微信内H5调起支付(https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=7_7&index=6)

ViewData["parameter"] = JsonConvert.SerializeObject(parameter);

_logger.LogWarning($"统一下单成功,即将调起微信支付:{ViewData["parameter"].ToString()}");

ViewData["response"] = response.Body;

return View();

}

ViewData["response"] = response.Body;

return View();

}

其中:OAuthToken是网页授权 返回的实体:

?

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
/// 获取网页授权token时,返回的实体

/// </summary>

public class OAuthToken : BaseRes

{

/// <summary>

/// 网页授权接口调用凭证。注意:此access_token与基础支持的access_token不同

/// </summary>

[JsonProperty("access_token")]

public string AccessToken { get; set; }

private int _expiresIn;

/// <summary>

/// access_token接口调用凭证超时时间,单位(秒)

/// </summary>

[JsonProperty("expires_in")]

public int ExpiresIn

{

get { return _expiresIn; }

set

{

ExpiresTime = DateTime.Now.AddSeconds(value);

_expiresIn = value;

}

}

/// <summary>

/// 用于刷新access_token

/// </summary>

[JsonProperty("refresh_token")]

public string RefreshToken { get; set; }

/// <summary>

/// 用户唯一标识。请注意,在未关注公众号时,用户访问公众号的网页,也会产生一个用户和公众号唯一的openid

/// </summary>

[JsonProperty("openid")]

public string Openid { get; set; }

/// <summary>

/// 用户授权的作用域,使用逗号(,)分隔

/// </summary>

[JsonProperty("scope")]

public string Scope { get; set; }

[JsonProperty("expires_time")]

public DateTime ExpiresTime { get; set; }

/// <summary>

/// 只有在用户将公众号绑定到微信开放平台账号后,才会出现该字段

/// </summary>

[JsonProperty("unionid")]

public string Unionid { get; set; }

}

最后 贴一下支付成功后的回调函数:

?

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
[Route("notify/wechatpay")]

public class WeChatPayNotifyController : Controller

{

private readonly IWeChatPayNotifyClient _client;

private readonly ILogger<WeChatPayNotifyController> _logger;

public WeChatPayNotifyController(IWeChatPayNotifyClient client,ILogger<WeChatPayNotifyController> logger)

{

_client = client;

_logger = logger;

}

/// <summary>

/// 统一下单支付结果通知

/// </summary>

/// <returns></returns>

[Route("unifiedorder")]

[HttpPost]

public async Task<IActionResult> Unifiedorder()

{

try

{

_logger.LogWarning($"进入回调");

var payconfig = OpenApi.GetPayConfig();

var notify = await _client.ExecuteAsync<WeChatPayUnifiedOrderNotify>(Request);

_logger.LogWarning($"返回状态码:{notify.ReturnCode}");

if (notify.ReturnCode == "SUCCESS")

{

_logger.LogWarning($"业务结果码:{notify.ResultCode}");

if (notify.ResultCode == "SUCCESS")

{

_logger.LogWarning($"支付方式:{notify.TradeType}");

_logger.LogWarning($"商户订单号:{notify.OutTradeNo}");

_logger.LogWarning($"微信支付订单号:{notify.TransactionId}");

_logger.LogWarning($"支付金额:{notify.TotalFee}");

return WeChatPayNotifyResult.Success;

}

}

return NoContent();

}

catch(Exception ex)

{

_logger.LogWarning($"回调失败:{ex.Message}");

return NoContent();

}

}

}

然后测试一下支付,查看服务器Log如下:

.NET Core之微信支付之公众号、H5支付详解

H5支付

H5支付是指再除开微信浏览器以外的移动端浏览器上进行微信回复操作。

和上面步骤大体一致,有几个地方需要注意

1:客户端IP问题:H5支付的时候,微信支付系统会根据客户端调起的当前Ip 作为支付Ip,若发现 发起支付请求时,ip有问题,则会支付失败,或者提示系统繁忙。这里贴一下我获取IP的代码:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17
Utils.GetUserIp(_accessor.HttpContext);//页面上调用

/// <summary>

/// 穿过代理服务器获取真实IP

/// </summary>

/// <returns></returns>

public static string GetUserIp(this HttpContext context)

{

var ip = context.Request.Headers["X-Forwarded-For"].FirstOrDefault();

if (string.IsNullOrEmpty(ip))

{

ip = context.Connection.RemoteIpAddress.ToString();

}

return ip;

}

2:TradeType类型应该是:MWEB

3:若调起微信支付成功后,默认回调到支付首页,若需要设置回调页面,则可以再URl中拼接:

?

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
/// <summary>

/// H5支付

/// </summary>

/// <param name="viewModel"></param>

/// <returns></returns>

[HttpPost]

public async Task<IActionResult> H5Pay(WeChatPayH5PayViewModel viewModel)

{

var request = new WeChatPayUnifiedOrderRequest

{

Body = viewModel.Body,

OutTradeNo = viewModel.OutTradeNo,

TotalFee = viewModel.TotalFee,

SpbillCreateIp = viewModel.SpbillCreateIp,

NotifyUrl = viewModel.NotifyUrl,

TradeType = viewModel.TradeType

};

var response = await _client.ExecuteAsync(request);

// mweb_url为拉起微信支付收银台的中间页面,可通过访问该url来拉起微信客户端,完成支付,mweb_url的有效期为5分钟。

if (response.MwebUrl == null)

{

ViewData["response"] = response.ReturnMsg;

return View();

}

return Redirect(response.MwebUrl);

}

.NET Core之微信支付之公众号、H5支付详解

更多详细可参考文档: https://pay.weixin.qq.com/wiki/doc/api/H5.php?chapter=15_4

4:支付结果通知:

注意:

1、同样的通知可能会多次发送给商户系统。商户系统必须能够正确处理重复的通知。

2、后台通知交互时,如果微信收到商户的应答不符合规范或超时,微信会判定本次通知失败,重新发送通知,直到成功为止(在通知一直不成功的情况下,微信总共会发起10次通知,通知频率为15s/15s/30s/3m/10m/20m/30m/30m/30m/60m/3h/3h/3h/6h/6h – 总计 24h4m),但微信不保证通知最终一定能成功。

3、在订单状态不明或者没有收到微信支付结果通知的情况下,建议商户主动调用微信支付【 查询订单API 】确认订单状态。

特别提醒:

1、商户系统对于支付结果通知的内容一定要做 签名验证,并校验返回的订单金额是否与商户侧的订单金额一致 ,防止数据泄漏导致出现“假通知”,造成资金损失。

2、当收到通知进行处理时,首先检查对应业务数据的状态,判断该通知是否已经处理过,如果没有处理过再进行处理,如果处理过直接返回结果成功。在对业务数据进行状态检查和处理之前,要采用数据锁进行并发控制,以避免函数重入造成的数据混乱。

最后可以测试下H5支付,查看返回的Log:

.NET Core之微信支付之公众号、H5支付详解

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持快网idc。

原文链接:http://www.cnblogs.com/zhangxiaoyong/p/10588241.html

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 .NET Core之微信支付之公众号、H5支付详解 https://www.kuaiidc.com/98072.html

相关文章

发表评论
暂无评论