Sending DingTalk Messages with .NET Core Applications
Implementing DingTalk Webhook Integration
This implementation demonstrates how to send notifications to DingTalk using .NET Core console applications. The solution supports both text and markdown message formats with flexible configuration options.
Required Dependencies
The project requires the following NuGet packages:
<PackageReference Inc ...
Posted on Mon, 14 Sep 2026 16:13:01 +0000 by PoOP
Implementing Secure DingTalk Robot Notifications in Spring Boot
Maven DependenciesFirst, include the necessary dependencies for the web module and Lombok to reduce boilerplate code in the configuration classes.<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency> ...
Posted on Thu, 14 May 2026 16:59:42 +0000 by ld0121
Configuring WeCom Webhook Notifications in Zabbix 7.0
Zabbix 7.0 introduced stricter validation for custom media type scripts, which frequently breaks legacy webhook implementations designed for earlier releases. To restore Enterprise WeChat (WeCom) group robot notifications, the JavaScript execution block must be updated to align with the current HttpRequest API and payload expectations.
Navigate ...
Posted on Wed, 13 May 2026 02:39:18 +0000 by IMP_TWI