Sample Application: HelloWorld

"HelloWorld" is a very simple application. It returns a "Hello, This is simple application" message in response to any request sent to this application.

Register Application

First register your application so that SMSGupShup team can know about it.

App Name:Hello World
AppUrl:http://example.com/helloworld
Description:HelloWorld App Demo
GUID:ffabfe30-cbd4-11dd-a049-00163e000015
Keyword:Hello

PHP Implementation

  • Request url:<AppUrl>?msisdn=919811956807&content=Hi
  • Response generated : [ { "msisdn":"919811956807", "content":"Hello, This is simple application" } ]
  • Application code:
    <?php
    $msisdn = $_GET["msisdn"];
    $content = $_GET["content"];
    $reply = "Hello, This is simple application";
    $a = array('msisdn'=>$msisdn, 'content'=>$reply);
    $json_response = json_encode($a);
    echo "[$json_response]";
    ?>