Compute Rental
Ctrl K

Guide

WeChat Messages

GuideIntegrationsFAQSupport
PricingBlog
Quick StartTop-Up and BillingAccelerating Access to Academic ResourcesQuick StartIntroductionMaintenance and TroubleshootingNetwork
PlatformJetBrain ProjectorTmpWebCal Scholars Program @2026Introduction to the Public Beta/Suqian Zone AAbout UsCopying Data Between InstancesAnalysis of Server Performance MetricsTidal Computing PowerLoad Balancing
Domestic ChipsUsing Huawei MindIEHuawei Ascend NPUMooreThread GPU
Environment SetupCUDA/cuDNNMinicondaPython3.XInstalling DependenciesOverviewImages
Enterprise FeaturesFlexible DeploymentElastic Deployment Release NotesBest Practices for Elastic DeploymentPerformance Metrics Monitoring
Container InstancesJupyterLabRemote SSH ConnectionSave the imageScaling ConfigurationMulti-machine, multi-GPU parallel processingDaemonOverviewChange the billing methodMigration Example (Same Region)Migration ExamplesRemote DesktopReset the system
Choosing a GPUGPU SelectionPerformance Testing
DataUpload DataDownload DataPublic DataPublic Cloud Storage (Highly Recommended)Compression / DecompressionFile StorageLocal data diskOverview
Best PracticesFileZillaGitGromacsHuggingFaceKataGoLinux BasicsMPIOpenCLPyCharm Remote DevelopmentR (RStudio) InstallationSSH TunnelTensorBoardRemote Development with VSCodeVisdomVulkanXShellOpen PortsWeChat MessagesPerformanceExpose multiple servicesMoney-Saving TipsComputation Precision IssuesSoftware Sources

Best Practices

WeChat Messages

07/30/202621556 views

WeChat has stripped down the functionality of template messages; the first and last lines are no longer visible. For details, see the WeChat Developer Documentation

Important Notice: Messages must not contain illegal or harmful content; otherwise, you will be solely responsible for any legal consequences that may arise!

WebCal provides you with the ability to customize code to send WeChat message notifications. Use cases include:

  1. Send key metrics from model training to your WeChat to stay updated on the training process in real time
  2. Receive notifications of abnormal program interruptions via WeChat so you can promptly modify the code or stop billing to avoid idle time losses.
  3. Other (You are welcome to use this feature even if you do not rent a WebCal GPU instance)

Note: To ensure proper use of notifications, the daily limit is 50 messages, with a maximum of 5 messages per minute (only successfully sent messages are counted).

How to Use

  1. After registering a WebCal account, link your WeChat account (Control Panel -> Account Security menu)

  2. Obtain a developer token; see the figure below for instructions

image_20250414200653

Sending a Message via a POST Request

# python脚本示例

import requests
headers = {"Authorization": "获取到的Token"}
resp = requests.post("https://www.webcal.ai/api/v1/wechat/message/send",
                     json={
                         "title": "eg. 来自我的程序",
                         "name": "eg. 我的ImageNet实验",
                         "content": "eg. Epoch=100. Acc=90.2"
                     }, headers = headers)
print(resp.content.decode())

Among the parameters listed above, title is required; all others are optional.

If the submission is successful, you will receive the following message in the WebCal WeChat official account:

image-20220222113006186

Next articlePerformance
Compute Rental DocsBack to Guide