!752 static S token; static S channelID = "C0FH9PY8J"; // #talkingbots static S text = "Another bot test"; static S username = "bot me"; p { token = "xoxp-11444506721-15584660016-15602755169-10849bef29"; S url = "https://slack.com/api/chat.postMessage"; S postData = "token=" + urlencode(token) + "&channel=" + urlencode(channelID) + "&text=" + urlencode(text) + "&username=" + urlencode(username); S data = doPost(postData, url); print(data); }