You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
3 months ago | |
|---|---|---|
| .. | ||
| LINGYUN/Abp/WeChat/Common | 4 months ago | |
| System | 4 months ago | |
| FodyWeavers.xml | 2 years ago | |
| FodyWeavers.xsd | 2 years ago | |
| LINGYUN.Abp.WeChat.Common.csproj | 3 months ago | |
| README.EN.md | 1 year ago | |
| README.md | 1 year ago | |
README.md
LINGYUN.Abp.WeChat.Common
微信通用模块,提供微信产品线共享的基础功能实现。
功能特性
- 统一的消息处理框架
- 统一的消息加解密机制
- 统一的事件处理机制
- 统一的API调用接口
- 统一的错误处理机制
模块引用
[DependsOn(typeof(AbpWeChatCommonModule))]
public class YouProjectModule : AbpModule
{
}
配置项
{
"WeChat": {
"Common": {
"MessageHandlerFactory": {
"MessageResolvers": [], // 消息解析器列表
"MessageHandlers": [] // 消息处理器列表
}
}
}
}
消息处理
- 支持文本消息处理
- 支持图片消息处理
- 支持语音消息处理
- 支持视频消息处理
- 支持事件消息处理
- 支持自定义消息处理器扩展