Contents

Support Managers

Aerielle Kiyori
English
offline
Anomelli Mellow
English
offline
show offline managers  
English, Hindi, Russian  

SBSL Example: Group chat to URL forwarder

Forwards all group chat to your web script (for example, written in PHP). Your script may send replies to the chat.

group_im {
  # Check if this is a group we are interested in
  if $group_name==My test group
    http_query http://www.testurl.com/script.php
    send_group_im $group_uuid $httpreply
  endif
}

Comments

This script works in the following way:

  1. Checks if group chat message came from "My test group" group
  2. Forwards it to "http://www.testurl.com/script.php" (probably your web PHP script)
  3. Waits for reply from script
  4. Says the script response back to group chat

Return back to SBSL examples