Created
December 20, 2020 13:01
-
-
Save zz-chen/e6bac9b254b28baa1121a2b91824571a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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