|
@@ -30,16 +30,16 @@ namespace GxPress.Api.WebControllers
|
|
|
public string GetNativePayUrl()
|
|
|
{
|
|
|
var alipay = new PcPay();
|
|
|
- return alipay.PayRequest("637263608658642543_7", "汪峰讲故事", "0.01", "汪峰讲故事","");
|
|
|
+ return alipay.PayRequest("637263608658642543_7", "汪峰讲故事", "0.01", "汪峰讲故事", "");
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 回调地址
|
|
|
/// </summary>
|
|
|
- [HttpGet("notify")]
|
|
|
+ [HttpPost("notify")]
|
|
|
[AllowAnonymous]
|
|
|
public async Task Callback()
|
|
|
{
|
|
|
- Dictionary<string, string> sArray = GetRequestGet();
|
|
|
+ Dictionary<string, string> sArray = GetRequestPost();
|
|
|
if (sArray.Count != 0)
|
|
|
{
|
|
|
try
|
|
@@ -51,17 +51,12 @@ namespace GxPress.Api.WebControllers
|
|
|
//Console.WriteLine($"同步验证通过,订单号:{sArray["out_trade_no"]}");
|
|
|
if (await orderService.InsertAliPayOrderAsync(sArray))
|
|
|
{
|
|
|
- var res = new WxPayData();
|
|
|
- res.SetValue("out_trade_no", sArray["out_trade_no"]);
|
|
|
- res.SetValue("attach", sArray["out_trade_no"]);
|
|
|
- res.SetValue("total_fee", sArray["total_amount"]);
|
|
|
- res.SetValue("transaction_id", sArray["trade_no"]);
|
|
|
- //创建订单
|
|
|
- if (await orderService.InsertWxOrderAsync(res))
|
|
|
- {
|
|
|
- _context.Response.StatusCode = 200;
|
|
|
-
|
|
|
- }
|
|
|
+ // var res = new WxPayData();
|
|
|
+ // res.SetValue("out_trade_no", sArray["out_trade_no"]);
|
|
|
+ // res.SetValue("attach", sArray["out_trade_no"]);
|
|
|
+ // res.SetValue("total_fee", sArray["total_amount"]);
|
|
|
+ // res.SetValue("transaction_id", sArray["trade_no"]);
|
|
|
+ _context.Response.StatusCode = 200;
|
|
|
}
|
|
|
else
|
|
|
{
|