WebCal
Ctrl K

가이드

WeChat Messages

가이드통합FAQ지원
가격블로그
빠른 시작Top-Up and BillingAccelerating Access to Academic ResourcesQuick StartIntroductionMaintenance and TroubleshootingNetwork
플랫폼JetBrain ProjectorTmpWebCal Scholars Program @2026Introduction to the Public Beta/Suqian Zone AAbout UsCopying Data Between InstancesAnalysis of Server Performance MetricsTidal Computing PowerLoad Balancing
중국산 칩Using Huawei MindIEHuawei Ascend NPUMooreThread GPU
환경 설정CUDA/cuDNNMinicondaPython3.XInstalling DependenciesOverviewImages
엔터프라이즈 기능Flexible DeploymentElastic Deployment Release NotesBest Practices for Elastic DeploymentPerformance Metrics Monitoring
컨테이너 인스턴스JupyterLabRemote SSH ConnectionSave the imageScaling ConfigurationMulti-machine, multi-GPU parallel processingDaemonOverviewChange the billing methodMigration Example (Same Region)Migration ExamplesRemote DesktopReset the system
GPU 선택GPU SelectionPerformance Testing
데이터Upload DataDownload DataPublic DataPublic Cloud Storage (Highly Recommended)Compression / DecompressionFile StorageLocal data diskOverview
모범 사례FileZillaGitGromacsHuggingFaceKataGoLinux BasicsMPIOpenCLPyCharm Remote DevelopmentR (RStudio) InstallationSSH TunnelTensorBoardRemote Development with VSCodeVisdomVulkanXShellOpen PortsWeChat MessagesPerformanceExpose multiple servicesMoney-Saving TipsComputation Precision IssuesSoftware Sources

모범 사례

WeChat Messages

2026. 07. 30.21549회 조회

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

다음 글Performance
Compute Rental 문서가이드(으)로 돌아가기