Just completed the API for IndyaRocks.com
Enjoy!
March 2, 2012 by Ubaid
Just completed the API for IndyaRocks.com
Enjoy!
Category SMS | Tags: , Android App for IndyaRocks SMS, Free SMS, Indya Rocks SMS API, IndyaRocks.com | 2 Comments
February 29, 2012 by Ubaid
Many of our users have incorporated Ubaid.tk API’s in their own applications. This helps them be carefree of the code updates, and are sure they are dependent on a reliable API. Just lisitng down few of the Apps available for download for your Android Phones.
If you have developed an App for iOS / Android / Symbian / Blackberry / Windows Phone, let us know. We will publish your links on our website, to promote your Apps
Category SMS | Tags: , Android, SMS | 15 Comments
February 27, 2012 by Ubaid
Many of our users have incorporated Ubaid.tk API’s in their own applications. This helps them be carefree of the code updates, and are sure they are dependent on a reliable API. Just lisitng down few of the Apps available for download for your Windows Phones.
If you have developed an App for iOS / Android / Symbian / Blackberry / Windows Phone, let us know. We will publish your links on our website, to promote your Apps!
Category SMS | Tags: | No Comments
February 6, 2012 by Ubaid
Folks, I have updated my API to accommodate future SMS. Please note this is currently in beta phase, and a few bugs might be there. Also, this API is currently available for Way2sms only. Other service providers will be added soon!
Click here to learn how to send Future SMS!
Happy SMSing!
Update 07/02
Sorry folks, have to close down the Future API. Will make it up once a few important bugs are fixed.
Update 09/02
Future SMS API is back with a bang! Also, added API for 160by2! Now you can schedule your sms through my API for both Way2sms as well as 160by2
Note : Currently, Future SMS will not work for DND numbers. So if my API says SMS Sent and its not scheduled in your account, the number might be in DND.
Category SMS | Tags: | 14 Comments
January 22, 2012 by Ubaid
Thank you all for your support. I have updated the API’s on my site.
Updates :
1. 160by2 API added
2. Removed API’s of Whozzat, SMSIndia, SMSInside. These sites are DEAD/USELESS!
Will post more updates soon!
Category SMS | Tags: | 6 Comments
December 6, 2011 by Ubaid
Hi Folks. Our user Mr Salahuddin has successfully released a beta version of a Java App for mobile phones which are Java Enabled. Please note that this app is still in Beta phase, and may have a few bugs.
This is a very simple app, connects to ubaid.tk and allows you to send SMS right from your mobile phone. It uses your gprs connection, or wifi connection (if supported by your phone) and sends the sms. The data transfer will not exceed 5kb per message, and hence the maximum you can be charged on your gprs would be 5 paise per message if your data pack is not activated.
Download your copy of this java app and please provide your feedback’s!
For errors / issues, please reply with the exact steps to replicate this error, along with your phone model. This will help us in fixing the issues you are facing.
Happy SMSing…!!!
Category SMS | Tags: | 16 Comments
December 1, 2011 by Ubaid
Welcome back folks. I have now updated the API with following new features,
Future Developments in progress :
Meanwhile enjoy the new and existing features on this free Sms API service.
Category SMS | Tags: | 4 Comments
November 3, 2011 by Ubaid
Here I will list down all the Tools you can use to Send SMS directly from your PC. The tools are either created by Me, or other users of my API.
Hello Folks. I have created a plugin for all Firefox users, which allows you to send the SMS right from your browser sidebar, without even coming to my site!
Use the shortcut key (Alt + U) to open the Sidebar!
More info on the Plugin here..
Cheers!
Yes! What you are hearing is right. We are looking out for developers who can develop an Application for Android Mobile Phones. Developers can directly use our API’s to send the sms from their apps. We will promote your apps. You are free to integrate any ads in your application and free to keep all the amount. Contact me for more details!
This Excel application was submitted by my API user, Mr Chandresh Chaturvedi.
This allows you to Send and Manage Multiple / Bulk SMS within your excel file. Very easy to use, Fast and Friendly. Must have for any Bulk SMS user.
Download the file from here..
Category SMS | Tags: | 3 Comments
September 16, 2011 by Ubaid
Hello Folks. I have created a plugin for all Firefox users, which allows you to send the SMS right from your browser sidebar, without even coming to my site!
Use the shortcut key (Alt + U) to open the Sidebar!
Important features : Automatically updates new service providers, without requiring you to update the plugin. Cool na
Download the plugin from here..
Cheers!
Category SMS | Tags: | 9 Comments
August 29, 2011 by Ubaid
Hello Folks,
Today I am going to explain how to use my SMS API service in your own application. Please find the example source codes given below.
1. C# Example. Can be used directly in any .NET Application.
public void send(string uid, string password, string message, string no)
{
HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create("http://ubaid.tk/sms/sms.aspx?uid=" + uid + "&pwd=" + password + "&msg=" + message + "&phone=" + no + "&provider=way2sms");
HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
System.IO.StreamReader respStreamReader = new System.IO.StreamReader(myResp.GetResponseStream());
string responseString = respStreamReader.ReadToEnd();
respStreamReader.Close();
myResp.Close();
}
2. PHP example.
<?php
$uid = 'USERNAME';
$pwd = 'PASSWORD';
$phone = 'SEND MSG TO PHONE NO';
$msg = 'MESSAGE TEXT';
$provider = 'way2sms or fullonsms or any other provider supported by ubaid.tk';
$content = 'uid='.rawurlencode($uid).
'&pwd='.rawurlencode($pwd).
'&phone='.rawurlencode($phone).
'&msg='.rawurlencode($msg).
//'&codes=1'. // Use if you need a user freindly response message.
'&provider='.rawurlencode($provider);
$sms_response = file_get_contents('http://ubaid.tk/sms/sms.aspx?'.$content);
echo $sms_response;
?>
Required Params : uid, pwd, phone, msg.
uid : your userid for the required sms provider
pwd : your password for the required sms provider
provider : way2sms(default), fullonsms, smsindia, whozzat, smsinside, site2sms. if you do not specify any provider, way2sms will be used by default.
phone : phone number whom you want to send sms. seperate multiple phone numbers with a comma (,)
msg : your sms message, unlimited chars. will be sent as multiple msgs if crosses the message length for any provider
Optional Parameters
codes : 1. Send this if you require a user friendly msg from the server. for example, if codes=1 is not provided the server will return the result as an integer. 1 means SMS sent, -1 means some server error, -2 means invalid username, -3 means invalid message text, -4 means login failed.
Currently, the following service providers are supported for SMS sending.
Update 09 Feb 2012 :
For Future SMS (currently only Way2sms and 160by is supported), send these parameters also along with your original URL :
future : 1. Send this for scheduling the sms in your account.
date : ddmmyyyy . For 9 feb 2012, it will be 09022012 .It has to be ddmmyyyy only, else sms wont get scheduled.
time : hhmm (24 hour, military format. 11:30 PM will be 2350)
Send these 3 extra parameters, and future sms will be scheduled in your way2sms / 160by2 account! ![]()
Note : You can schedule SMS only for Non-DND numbers. If the number is in DND you cannot schedule messages for them.
Category SMS | Tags: | 152 Comments