Skip to content

Instantly share code, notes, and snippets.

@ledudu
Forked from IcedMango/tasker_forward_SMS.js
Created October 15, 2019 02:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ledudu/ed7847aaa2b9cf6fec1d2d43dd182153 to your computer and use it in GitHub Desktop.
Save ledudu/ed7847aaa2b9cf6fec1d2d43dd182153 to your computer and use it in GitHub Desktop.
How to use tasker forward SMS to telegram
//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