readme.en.md
π Senparc.Weixin SDK is currently the most widely used WeChat .NET SDK and one of the most popular .NET open-source projects in China. This project has been continuously maintained for over 12 years and has powered a large number of successful systems and applications. We will continue iterating, and are deeply integrating AI scenarios with more samples coming online. Welcome to join our community π
With Senparc.Weixin, you can quickly build applications across the entire WeChat ecosystem, including Official Accounts, Mini Programs, Mini Games, Enterprise WeChat, Open Platform, WeChat Pay, JS-SDK, WeChat hardware/Bluetooth, and more. The samples in this repository are also suitable for .NET beginners.
Currently, Senparc.Weixin supports almost all WeChat modules and APIs, and supports multiple frameworks including .NET 3.5 / 4.0 / 4.5 / .NET Standard 2.x / .NET Core 2.x / .NET Core 3.x / .NET 6.0 / .NET 7.0 / .NET 8.0 / .NET 10.0. It is compatible with MVC, Razor, WebApi, Console, desktop apps (.exe), Blazor, MAUI, background services, and more, while remaining fully decoupled from external frameworks.
Since the project started in 2013, we have kept it continuously updated for over 12 years, and have shared complete source code and design ideas without reservation. We hope more developers can benefit from it, spread the open-source spirit, and help advance open source in China. Sincere thanks to everyone who has supported us along the way.
If you like this project and want us to continue improving it, please give us a β Star :)
[!TIP] π₯ Senparc Developer Community 2025-2026 Contributor Ranking
β‘ .NET 10 stable is now released. Latest Sample for .NET 10 (backward compatible), online demo: https://sdk.weixin.senparc.com/
π₯ AI chatbot WeChat integration sample is now online! View
π¬
Scott Hanselman interview on AI topicsWatch video
[!NOTE] π WeChat Pay V3 module (V1.0) is online! NuGet
<!-- _1. In order to isolate the demo from the source code and make it easier for everyone to find the demo, the Senparc.Weixin.MP.Sample and other folders have been moved to the [/Samples/](/Samples/) folder._ _2. The `Senparc.Weixin.Plugins` plan has been launched, details [click here](https://github.com/JeffreySu/WeiXinMPSDK/tree/master/Plugins)._ -->π Fully supports automatic long-text chunking and sending. More: Auto-replying Extra-long Messages for GenAI Applications
| Module | Link |
|---|---|
| Official Account | https://sdk.weixin.senparc.com/Docs/MP/ |
| Mini Program | https://sdk.weixin.senparc.com/Docs/WxOpen/ |
| Enterprise WeChat | https://sdk.weixin.senparc.com/Docs/Work/ |
| WeChat Pay V3 (recommended) | https://sdk.weixin.senparc.com/Docs/TenPayV3/ |
| WeChat Pay V2 (not recommended) | https://sdk.weixin.senparc.com/Docs/TenPayV2/ |
[!NOTE]
- Each module page above includes both docs and immediately runnable code templates (you only need to fill WeChat settings, no code changes required).
- Configuration, registration, and API invocation patterns are consistent across modules. Learn one module and you can quickly apply the same approach to others.
- The /docs directory provides more complete guidance for advanced development, click here.
- Senparc.Weixin SDK modules are fully decoupled and independently published. To simplify dependencies, you can directly use Senparc.Weixin.All to reference all modules automatically.
[!NOTE]
- The sample source code below is in
/Samples/MP/Senparc.Weixin.Sample.MP, using Official Account as an example. Once you know this flow, you can apply the same pattern to Mini Program, Enterprise WeChat, WeChat Pay, etc.
- For other module or integrated demos, see standalone samples under
/Samples/or integrated/advanced samples under/Samples/All/.
builder.Build() in Program.cs:</strong>builder.Services.AddSenparcWeixinServices(builder.Configuration);
If you are using legacy
Startup.cs, this line belongs inConfigureServices().
builder.Build() in Program.cs:</strong>var registerService = app.UseSenparcWeixin(app.Environment, null, null, register => { },
(register, weixinSetting) =>
{
// Register Official Account information (can be executed multiple times to register multiple Official Accounts)
register.RegisterMpAccount(weixinSetting, "Senparc Network Assistant Official Account");
});
- If you are using legacy
Startup.cs, this block belongs inConfigure().- If you want auto-registration for all configured accounts, append
autoRegisterAllPlatforms: true(requiresSenparc.Weixin.All):C#var registerService = app.UseSenparcWeixin(app.Environment, null, null, register => { }, (register, weixinSetting) => { /* no manual registration needed */ }, autoRegisterAllPlatforms: true /* auto-register all platforms */ );
You can call APIs anywhere in your program (customer service API as an example):
await CustomApi.SendTextAsync("AppId", "OpenId", "Hello World!");
[!TIP]
- Senparc.Weixin SDK automatically manages AccessToken through the full lifecycle. During development, you only need AppId and do not need to handle token expiration manually.
- Registration information such as AppId can be automatically obtained from
Senparc.Weixin.Config.SenparcWeixinSetting, and the relevant parameters are configured inappsettings.json.- A synchronous version is also available:
Senparc.Weixin.MP.AdvancedAPIs.CustomApi.SendText().
- Namespace and parameter naming follow official API documentation conventions as closely as possible (especially return fields), making code lookup and testing faster while reducing bug risks.
[!TIP] At this point, you can already apply the same pattern to all WeChat modules.
Official Accounts provide a built-in chat window for text, image, voice, and other interactions.
The same pattern also applies to Enterprise WeChat and Mini Program customer service messaging. Only two steps:
using Senparc.NeuChar.Entities;
using Senparc.Weixin.MP.Entities;
using Senparc.Weixin.MP.Entities.Request;
using Senparc.Weixin.MP.MessageContexts;
using Senparc.Weixin.MP.MessageHandlers;
namespace Senparc.Weixin.Sample.MP
{
/// <summary>
/// Custom MessageHandler
/// Inherits from MessageHandler and overrides the corresponding request handling methods
/// </summary>
public partial class CustomMessageHandler : MessageHandler<DefaultMpMessageContext>
{
public CustomMessageHandler(Stream inputStream, PostModel postModel, int maxRecordCount = 0,
bool onlyAllowEncryptMessage = false, IServiceProvider serviceProvider = null)
: base(inputStream, postModel, maxRecordCount, onlyAllowEncryptMessage, null, serviceProvider)
{
}
/// <summary>
/// Default message for all unhandled types
/// </summary>
/// <returns></returns>
public override IResponseMessageBase DefaultResponseMessage(IRequestMessageBase requestMessage)
{
//ResponseMessageText can also be News or other types
var responseMessage = this.CreateResponseMessage<ResponseMessageText>();
responseMessage.Content = $"You sent a message, but the program did not specify a processing procedure";
return responseMessage;
}
public override Task<IResponseMessageBase> OnImageRequestAsync(RequestMessageImage requestMessage)
{
//Handle image requests...
}
public override Task<IResponseMessageBase> OnLocationRequestAsync(RequestMessageLocation requestMessage)
{
//Handle location requests...
}
}
}
We provide two ways to request the CustomMessageHandler: Middleware (recommended) and Controller (or WebApi). You can choose either one. Taking Middleware as an example, after enabling the configuration in Program.cs, add the following code to register the MessageHandler:
app.UseMessageHandlerForMp("/WeixinAsync",
(stream, postModel, maxRecordCount, serviceProvider)
=> new CustomMessageHandler(stream, postModel, maxRecordCount, false, serviceProvider),
options
=>
{
options.AccountSettingFunc = context => Senparc.Weixin.Config.SenparcWeixinSetting;
});
At this point, you can use https://YourDomain/WeixinAsync to configure your WeChat Official Account backend in [Settings and Development] > [Basic Configuration] > [Server Address (URL)], and set the Token in appsettings.json (also applies to Enterprise WeChat and Mini Program; see the corresponding Samples).
In addition, you can also use the Controller (or WebApi) method to have more precise control over the entire message processing process (or use it in .NET Framework), click here to view.
Now you have mastered the basic skills required for WeChat platform development. Keep reading for more resources:
This repository includes source code for .NET Framework / .NET Standard 2.0+ / .NET Core 3.1 / .NET 6 / .NET 7 / .NET 8 / .NET 10 (same core logic):
| # | Module | DLL | NuGet | Supported .NET |
|---|---|---|---|---|
| 1 | Core library | Senparc.Weixin.dll | ||
| 2 | Official Account / | |||
| JSSDK / Shake Around / etc. | Senparc.Weixin.MP.dll | |||
| 3 | [Mini Program | |||
| (incl. Mini Games) | ||||
| (independent project)](https://github.com/JeffreySu/WxOpen) | Senparc.Weixin.WxOpen.dll | |||
| 4 | WeChat Pay | Senparc.Weixin.TenPay.dll | ||
| 5 | WeChat Pay V3 | Senparc.Weixin.TenPayV3.dll | ||
| 6 | ASP.NET MVC extension | Senparc.Weixin.MP.MVC.dll | ||
| 7 | Enterprise Account | |||
| (officially discontinued) | Senparc.Weixin.QY.dll | |||
| 9 | Enterprise WeChat | Senparc.Weixin.Work.dll | ||
| 9 | WeChat Open Platform | Senparc.Weixin.Open.dll | ||
| 10 | Redis distributed cache | Senparc.Weixin.Cache. | ||
| Redis.dll | ||||
| 11 | Memcached | |||
| distributed cache | Senparc.Weixin.Cache. | |||
| Memcached.dll | ||||
| 12 | [WebSocket | |||
| (independent project)](https://github.com/JeffreySu/Senparc.WebSocket) | Senparc.WebSocket.dll | |||
| 13 | All-in-One package | Senparc.Weixin.All.dll | ||
| .NET Framework 4.6.2+ | .NET Standard 2.0 / 2.1 | .NET 10.0, backward compatible with .NET 5.0-9.0 |
[!WARNING]
- Since May 1, 2019, .NET Framework 3.5 and 4.0 are no longer updated. The last stable version for .NET Framework 3.5 + 4.0 is available here.
- Since April 3, 2022, .NET Framework 4.5 has been upgraded to 4.6.2. The last stable version for .NET Framework 4.5 is available here.
- If you still use .NET Framework, we recommend upgrading to .NET Framework 4.8+ by January 12, 2027. Official support for .NET Framework 4.6.2 ends then (see details).
- Use
Senparc.Weixin.Allto reference all modules at once.
- The official APIs are perfectly integrated, and all upgrades will try to ensure backward compatibility unless otherwise specified. So you can safely use or directly upgrade (overwrite) the latest DLLs. It is recommended to use NuGet for updates.
- You can also modify and compile the code yourself. Open the Senparc.Weixin.Sample.Net8.sln solution to see all the source code. When the compilation mode is
Release, a local NuGet package will be automatically generated (default generated in the/src/BuildOutPut/folder).
| Folder | Description |
|---|---|
| Senparc.WebSocket | WebSocket module |
| Senparc.Weixin.Cache | Senparc.Weixin.Cache.Memcached.dll, Senparc.Weixin.Cache.Redis.dll, and other distributed cache extension solutions |
| Senparc.Weixin.AspNet | Senparc.Weixin.AspNet.dll, a class library specifically for web support |
| Senparc.Weixin.MP.MvcExtension | Senparc.Weixin.MP.MvcExtension.dll source code, an extension package for MVC projects |
| Senparc.Weixin.MP | Senparc.Weixin.MP.dll WeChat Official Account SDK source code |
| Senparc.Weixin.MP.Middleware | Senparc.Weixin.MP.Middleware.dll WeChat Official Account message middleware source code |
| Senparc.Weixin.Open | Senparc.Weixin.Open.dll Third-party Open Platform SDK source code |
| Senparc.Weixin.TenPay | Senparc.Weixin.TenPay.dll & Senparc.Weixin.TenPayV3.dll source code for WeChat Pay V2 and V3 |
| Senparc.Weixin.Work | Senparc.Weixin.Work.dll Enterprise WeChat SDK source code |
| Senparc.Weixin.Work.Middleware | Senparc.Weixin.Work.Middleware.dll Enterprise WeChat message middleware source code |
| Senparc.Weixin.WxOpen | Senparc.Weixin.WxOpen.dll WeChat Mini Program SDK source code, including Mini Games |
| Senparc.Weixin.WxOpen.Middleware | Senparc.Weixin.WxOpen.Middleware.dll WeChat Mini Program message middleware source code, including Mini Games |
| Senparc.Weixin | Source code for all Senparc.Weixin.[x].dll basic libraries |
The usage of all modules in the Senparc.Weixin SDK is highly consistent, including the configuration process, AccessToken management, message processing, service messages, API calls, etc. You only need to refer to the usage of any module (it is recommended to start with Official Accounts or Mini Programs), and you can apply the same principles to other modules.
From the following samples, you can learn about the configuration and usage of each independent module. Just open the .sln solution file in the corresponding folder to view the source code and run it to see the documentation. The All folder contains more comprehensive and advanced feature demonstrations.
| Folder | Description | SDK Reference Method |
|---|---|---|
| MP | Official Accounts | NuGet Package |
| TenPayV2 | WeChat Pay V1 and V2 | NuGet Package |
| TenPayV3 | WeChat Pay V3 (TenPay APIv3) | NuGet Package |
| Work | Enterprise Accounts | NuGet Package |
| WxOpen | Mini Programs | NuGet Package |
| Shared | Shared files required by all samples | |
| All | A mixed scenario demonstration that includes all functions of WeChat Official Accounts, Mini Programs, WeChat Pay, Enterprise Accounts, etc., recommended for projects that integrate multiple platforms or require deep development (advanced) | |
| β£ All/console | Command Line Console Demo (.NET Core) | NuGet Package |
| β£ All/net45-mvc | Demo that can be directly published and used (.NET Framework 4.5 + ASP.NET MVC) | NuGet Package |
| β All/net10-mvc | Demo ready for production use (.NET 10.0), compatible with .NET 5.0, 6.0, 7.0, 8.0, and .NET Core | <strong>Source Code (Latest)</strong> |
| β All/net8-mvc | Demo ready for production use (.NET 8.0), compatible with .NET 5.0, 6.0, 7.0, and .NET Core | <strong>Source Code (Latest)</strong> |
Group 1 (Official Accounts): 300313885
Group 14 (Video Course Students): 588231256
Group 10 (Distributed Cache): 246860933
Group 12 (Mini Programs): 108830388
Group 16 (Open Platform): 860626938
The following groups are full:
Group 2: 293958349 (Full), Group 3: 342319110 (Full)
Group 4: 372212092 (Full), Group 5: 377815480 (Full), Group 6: 425898825 (Full)
Group 7: 482942254 (Full), Group 8: 106230270 (Full), Group 9: 539061281 (Full)
Group 11: 553198593 (Full), Group 13: 183424136 (Open Platform, Full), Group 15: 289181996 (Full)
If this project is helpful to you, we welcome any form of donation or participation in code updates and feedback. Thank you!
Donation: Enter
The WeChat development book, titled "In-Depth Analysis of WeChat Development: Efficient Development Secrets for Official Accounts and Mini Programs," completed by Jeffrey Su and the Senparc team after 2 years of effort, has been published. The book comes with an auxiliary reading system: BookHelper.
Welcome to purchase the genuine book: γBuy Genuineγ
The code snapshot of the book's publication version is in the branch BookVersion1.
In order to help everyone understand WeChat development details more intuitively and learn practical techniques in .NET development, we established the "Senparc Classroom" group and launched WeChat development video courses, covering the following two parts:
- WeChat development fundamentals
- Case study of official accounts and mini programs
The total course duration is 60 lessons, with additional episodes.
Currently, the videos are available on NetEase Cloud Classroom, with well-produced content and abundant materials. The course has been selected as an "A" level course. γWatch Videosγ, γView Course Code and Slidesγ.
| Senparc Network Assistant Official Account | Senparc Network Assistant Mini Program | BookHelper |
|---|---|---|
If you need to use or modify the source code of this project, it is recommended to Fork first. You are also welcome to submit a Pull Request for the general version you modified.
git checkout -b my-new-feature)git commit -am 'Added some feature')git repository (git push origin my-new-feature)my-new-feature branch of your git remote repository on the github website and submit a Pull RequestDeveloper branch instead of the master branch directly)The current branch includes full code for .NET Framework 4.6.2+ and .NET 6.0/7.0/8.0/10.0 (for versions no longer updated, see release snapshots).
The Demo for .NET Framework is located in the
/src/Samples/All/net45-mvcdirectory, and
[Recommended] The Demo for .NET 10.0 (compatible with .NET 5.0, 6.0, 7.0, 8.0, and .NET Core 3.1 and lower versions) is located in
/Samples/All/net10-mvc.
Note: In the samples above,
net10-mvcdirectly references each module's source code and can generate Senparc.Weixin SDK packages compatible with multiple versions when built inRelease.
The Nuget installation methods for each module: Installing the SDK into the project using Nuget
App Service is a Web service launched by Microsoft Azure, which has good support for .NET. The deployment steps are detailed in: Deploy the Wechat site to Azure.
Install an FTP service on the web server (recommended: FileZilla Server), then upload your locally compiled code directly. The corresponding sample in Samples is Senparc.Weixin.Sample.Net10. It can be used directly after compilation without code changes. If you use Azure App Service or other cloud services, FTP is usually enabled as well.
<!-- Implemented Functions ------------- * Wechat Official Account > - [x] Receive/Send Messages (Events) > - [x] Custom Menu & Personalized Menu > - [x] Message Management > - [x] OAuth Authorization > - [x] JSSDK > - [x] Wechat Payment > - [x] User Management > - [x] Material Management > - [x] Account Management > - [x] Parameterized QR Code > - [x] Long URL to Short URL Interface > - [x] Wechat Authentication Event Push > - [x] Data Statistics > - [x] Wechat Store > - [x] Wechat Card Coupon > - [x] Card Coupon Event Push > - [ ] Payment Event Push > - [ ] Membership Card Content Update Event Push > - [ ] Inventory Alert Event Push > - [ ] Coupon Point Flow Detail Event Push > - [x] Wechat Store > - [x] Wechat Intelligence > - [x] Wechat Device Function > - [x] Customer Service Function > - [x] Wechat Shake Around > - [x] Wechat Wi-Fi (Incomplete) > - [x] Wechat Scan QR Code (Merchant) > - [ ] Scan QR Code Event Push > - [ ] Open Product Homepage Event Push > - [ ] Follow Official Account Event Push > - [ ] Enter Official Account Event Push > - [ ] Asynchronous Push of Geographic Location Information > - [ ] Product Audit Result Push * Wechat Open Platform > - [x] Website Application > - [x] Official Account Third-Party Platform * Wechat Work Account > - [x] Manage Address Book > - [x] Manage Material Files > - [x] Manage Enterprise Account Applications > - [x] Receive Messages and Events > - [x] Send Messages > - [x] Custom Menu > - [x] Identity Authentication Interface > - [x] JSSDK > - [x] Third-Party Application Authorization > - [x] Third-Party Callback Protocol > - [ ] Authorization Code Event Push > - [ ] Address Book Change Notification > - [x] Enterprise Account Authorization Login > - [x] Enterprise Account Wechat Payment > - [x] Enterprise Session Service > - [ ] Enterprise Session Callback > - [x] Enterprise Shake Around > - [ ] Enterprise Card Coupon Service > - [ ] Card Coupon Event Push > - [x] Enterprise Customer Service > - [ ] Customer Service Reply Message Callback * Cache Strategy > - [x] Strategy Extension Interface > - [x] Local Cache > - [x] Redis Extension Package > - [x] Memcached Extension Package Welcome developers to submit Pull Requests for unfinished or to-be-supplemented modules! -->| Β Branch Β | Β Β Description Β Β Β Β |
|---|---|
| master Β | The main branch for official releases. This branch is usually more stable and can be used in production environments. |
| Developer | 1. The development branch. This branch is usually the Beta version, and new versions are developed in this branch before being pushed to the master branch. If you want to get a sneak peek of new features, you can use this branch. |
Thanks to the developers who contributed to this project. You have not only improved this project, but also made a contribution to the Chinese open source community. Thank you! The list can be found here.
<a href="https://github.com/JeffreySu/WeiXinMPSDK/graphs/contributors"> </a>If this project is useful to you, we welcome any form of donation, including participating in project code updates or providing feedback. Thank you!
Donate:
Apache License Version 2.0
Copyright 2025 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language governing permissions
and limitations under the License.
Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md
[!TIP] 100% open source, commercial use supported.