Skip to content

Instantly share code, notes, and snippets.

@zz-chen
Created December 20, 2020 13:01
Show Gist options
  • Save zz-chen/e6bac9b254b28baa1121a2b91824571a to your computer and use it in GitHub Desktop.
Save zz-chen/e6bac9b254b28baa1121a2b91824571a to your computer and use it in GitHub Desktop.
//bot秘钥
var apiKey = "****";
//请求链接
var apiUrl = "api.telegram.org";
//会话ID
var chatId = "***";
//发件人名称
var senderName = global('SMSRN');
if (senderName.match(/\d*/g)[0].length > 0) {
senderName = "";
}
//消息内容
var Message = encodeURIComponent(`${global('SMSRB')}\n[发件人 ${senderName} ${global('SMSRF')}]\n[接收于 ${global('SMSRD')} ${global('SMSRT').replace('.', ':')}]`);
var url = `https://${apiUrl}/bot${apiKey}/sendMessage?chat_id=${chatId}&text=${Message}`;
var xhttp = new XMLHttpRequest();
xhttp.open("GET", url, false);
xhttp.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment