mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-21 02:58:06 +08:00
docs: 提供微信公众平台模块的示例项目
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Options;
|
||||
using SKIT.FlurlHttpClient.Wechat.Security;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Sample_Net5.Controllers
|
||||
{
|
||||
[ApiController]
|
||||
[Route("notify")]
|
||||
public class WechatNotifyController : ControllerBase
|
||||
{
|
||||
private readonly ILogger _logger;
|
||||
|
||||
private readonly Options.WechatOptions _wechatOptions;
|
||||
|
||||
public WechatNotifyController(
|
||||
ILoggerFactory loggerFactory,
|
||||
IOptions<Options.WechatOptions> wechatOptions)
|
||||
{
|
||||
_logger = loggerFactory.CreateLogger(GetType());
|
||||
_wechatOptions = wechatOptions.Value;
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
[Route("message-push")]
|
||||
public IActionResult VerifyMessage(
|
||||
[FromQuery(Name = "app_id")] string? appId,
|
||||
[FromQuery(Name = "signature")] string? signature,
|
||||
[FromQuery(Name = "timestamp")] string? timestamp,
|
||||
[FromQuery(Name = "nonce")] string? nonce,
|
||||
[FromQuery(Name = "echostr")] string? echoString)
|
||||
{
|
||||
// 验证服务器推送
|
||||
// 文档:https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/Access_Overview.html
|
||||
|
||||
var wechatAccount = _wechatOptions.Accounts?.FirstOrDefault(e => e.AppId == appId);
|
||||
if (wechatAccount == null)
|
||||
return Content("fail");
|
||||
|
||||
ISet<string> set = new SortedSet<string>() { _wechatOptions.CallbackToken, timestamp!, nonce! };
|
||||
string sign = SHA1Utility.Hash(string.Concat(set));
|
||||
if (!string.Equals(sign, signature, StringComparison.InvariantCultureIgnoreCase))
|
||||
return Content("fail");
|
||||
|
||||
return Content(echoString);
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
[Route("message-push")]
|
||||
public async Task<IActionResult> ReceiveMessage()
|
||||
{
|
||||
// 接收服务器推送
|
||||
// 文档:https://developers.weixin.qq.com/miniprogram/dev/framework/server-ability/message-push.html
|
||||
|
||||
using var reader = new StreamReader(Request.Body, Encoding.UTF8);
|
||||
string content = await reader.ReadToEndAsync();
|
||||
_logger.LogInformation("接收到微信推送的数据:{0}", content);
|
||||
|
||||
return Content("success");
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user