Tuesday, February 9, 2010

Free Test Fake SMS Trial Sign Up to Amdtelecom

Test Trial Send Fake SMS
Free Test Fake SMS Trial Sign Up to Amdtelecom
For Link Sign Up to Http - Api : http://www.amdtelecom.net/services/httpapi/register/
Not Activation number and Email. Just Simple for Register.
Get Trial 1 SMS or Buy Credit.

AMD Telecom offers you HTTP API service, an efficient and reliable service, through which customers are able to deliver highly secure sms messages all over the world.
Through HTTP API, AMD Telecom's leading technology offers detailed delivery report, providing rich and vital information without any further cost.

Some of the offered reports are:
* "Delivered" ( Return Code --> 41 )
* "Absent subscriber Delivered" ( Return Code --> 45 )
* "Absent subscriber Delivery Fail" ( Return Code --> 46 )
* "Unknown subscriber" ( Return Code --> 42 )
* "Call Barred" ( Return Code --> 44 )
* "Insufficient credits" ( Return Code --> 64 )
Sms messaging by HTTP API procedure
Through AMD Telecom’s gateway, you can embed a script at your crm / sms application using a GET at our server, such as the following.

http://www.amdtelecom.net/api/sendsms.php?from=SENDERID&to=RECEPIENTPHONE&username=MYUSERNAME&password=MYPASSWORD&text=demo

Example:
You can follow the steps below to send a sms message as an example, being able to comprehend the simple way that our HTTP API service works.

http://www.amdtelecom.net/api/sendsms.php?from=TESTME&to=44123456789&username=test&password=test123&text=This+is+a+test+sms

The result would be an SMS sent to a phone in UK (44) 123456789.
It is important to use international format of phone number with country code included.
The recipient will see the Sender “TESTME” and the text “This is a test sms”.
The username and password must be a valid username and password.
When you will complete the GET command, you will receive The message ID like the following syntax:

SUCCESS MessageId: 78, 0: Accepted for delivery

The message id is different for each sms sent. You will use it to keep tracking the delivery status.

HTTP API Account Balance

The syntax of getting your account balance is:
http://www.amdtelecom.net/api/balance.php?username=MYUSERNAME&password=MYPASSWORD
Using the above syntax, you will receive your account balance.

Delivery Report
Using the following syntax, you will receive the delivery report:

http://www.amdtelecom.net/api/delivery.php?username=test&password=test123&id=78

The above POST will return you the status of the sms message, sent as example of Sending an SMS. Read More..

Script SMS PHP Curl Smsglobal com

Script SMS PHP Curl from http://smsglobal.com

Get try trial 25 fake sms and input user and password in this script php curl :

CODE



<?php
    
function sendSMS($content) {

        
$ch curl_init('http://www.smsglobal.com/http-api.php');
        
curl_setopt($chCURLOPT_POSTtrue);
        
curl_setopt($chCURLOPT_POSTFIELDS$content);
        
curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
        
$output curl_exec ($ch);
        
curl_close ($ch);
        return 
$output;    
    }
    
    if(isset(
$_POST) && !empty($_POST)) {
        
//Set variables
        
$user        'username';
        
$password    'password';
        
$to          $_POST['to'];
        
$from        $_POST['from'];
        
$message     $_POST['message'];
        
        
//Encode content and send to SMS Global
        
$content =  'action=sendsms'.
                    
'&user='.rawurlencode($user).
                    
'&password='.rawurlencode($password).
                    
'&to='.rawurlencode($to).
                    
'&from='.rawurlencode($from).
                    
'&text='.rawurlencode($message);
        
        
//Send SMS through curl
        
$output sendSMS($content);                                              
    }
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Send SMS</title>
</head>
<body>
    <?php if(isset($output)) echo $output; else { ?>
    <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
        <h1>Send SMS</h1>
        <table>
            <tr>
                <td>Phone Numbers (Separate with comma)</td>
                <td><input type="text" name="to" /></td>
            </tr>
            <tr>
                <td>Sender ID</td>
                <td><input type="text" name="from" maxlength="11" /></td>
            </tr>
            <tr>
                <td>Message</td>
                <td><textarea name="message"></textarea></td>
            </tr>
            <tr>
                <td colspan="2"><input type="submit" name="submit" value="Submit" /></td>
            </tr>
        </table>
    </form><?php ?>
</body>
</html>




Select script sms copy and paste in notepad. save with extension .php Upload in your hosting and try send with your account. Read More..

HTTP API 2.0 Commands List Bulk SMS from Smsglobal

SMSGlobal - API for developers
HTTP API 2.0 Commands List Bulk SMS
Sendsms - Send now or scheduled

Try Get Trial 25 Fake sms or buy Credit from http://www.smsglobal.com

For HTTP API Send Fake SMS

http://www.smsglobal.com.au/http-api.php?action=sendsms&user=USERNAME&password=PASSWORD&from=FROMNUMBER&to=TONUMBER&text=testing%20http%20service

SSL is available via the same URL but https://

https://www.smsglobal.com.au/http-api.php?action=sendsms&user=USERNAME&password=PASSWORD&from=FROMNUMBER&to=TONUMBER&text=testing%20http%20service

This section describes how to send requests from the Client Application (Client) to the Messaging Exchange (MeX) and the possible responses to such requests.

The Client issues a HTTP GET or POST request to the MeX using a specific URL. The MeX issues back a response, which completes the transaction. Please note that the MeX response can either be an HTTP error code or a HTTP OK (200) in which case the returned response body will contain further information.

The Client supplies a number of parameters to the MeX in the request as described below. Read More..