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/3021550の閲覧数

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
コンピューティングレンタルに関するドキュメントガイドに戻る