How do i enable sms notifications in my web app? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T17:00:00Zhttp://stackoverflow.com/feeds/question/716946http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/716946/how-do-i-enable-sms-notifications-in-my-web-app0How do i enable sms notifications in my web app?aitoehigie2009-04-04T11:47:00Z2009-08-05T10:49:51Z
<p>I have a web application which i want to enable real time sms notifications to users of the applications. I would like to know how to go about this.
Note: i can not use twitter API because i live in west africa, and twitter doesnt send sms to my country
Also email2sms is not an option because the movile operators dont allow that in my country.
I earnestly await any reply that will show me what to do.
Thanks</p>
http://stackoverflow.com/questions/716946/how-do-i-enable-sms-notifications-in-my-web-app/716953#7169530Answer by Douglas Leeder for How do i enable sms notifications in my web app?Douglas Leeder2009-04-04T11:58:09Z2009-04-04T11:58:09Z<p>I don't have any knowledge in this area. But I think you'll have to talk to the mobile operators, and see if they have any API for sending SMS messages.
You'll probably have to pay them, or have some scheme for customers to pay them. Alternatively there might be some 3rd party that implements this functionality.</p>
http://stackoverflow.com/questions/716946/how-do-i-enable-sms-notifications-in-my-web-app/716956#7169563Answer by lbolognini for How do i enable sms notifications in my web app?lbolognini2009-04-04T12:01:38Z2009-04-04T12:01:38Z<p>What about using a proper sms gateway. These guys got APIs for several languages:</p>
<p><a href="http://www.clickatell.com/developers/php.php" rel="nofollow">http://www.clickatell.com/developers/php.php</a></p>
<p>There is an unofficial Python API too </p>
<p><a href="http://www.arnebrodowski.de/projects/clickatell/" rel="nofollow">http://www.arnebrodowski.de/projects/clickatell/</a></p>
http://stackoverflow.com/questions/716946/how-do-i-enable-sms-notifications-in-my-web-app/716962#7169624Answer by Marcelo Morales for How do i enable sms notifications in my web app?Marcelo Morales2009-04-04T12:05:42Z2009-04-04T12:05:42Z<p>There are a couple of options.</p>
<ul>
<li>Get some kind of SMS modem or connectivity and use your own cell phone using <a href="http://smslib.org/" rel="nofollow">smslib</a>. I am sorry I don't provide python interfaces but my experience is Java. The downside is that you will pay the full consumer rate. And you will have to put a cell phone on your data center.</li>
<li>Connect to <a href="http://en.wikipedia.org/wiki/Short%5Fmessage%5Fpeer-to-peer%5Fprotocol" rel="nofollow">SMPP</a> gateway. You will have to talk to the mobile operator in order to make this work. There is a library called <a href="http://code.google.com/p/jsmpp/" rel="nofollow">jsmpp here</a>. Again, I am sorry it is not python.</li>
<li>If it is too much of a hassle you could use an intermediary, which provides HTTP-SMS gateways, like <a href="http://www.ericsson.com/solutions/ipx/" rel="nofollow">this one</a>. That's easy because you don't need to use SMPP and your system administrators wont bark at you for putting cell phones in the datacenter.</li>
</ul>
http://stackoverflow.com/questions/716946/how-do-i-enable-sms-notifications-in-my-web-app/1071496#10714961Answer by Dawie Strauss for How do i enable sms notifications in my web app?Dawie Strauss2009-07-01T21:30:54Z2009-07-01T21:30:54Z<p>Another SMS gateway with a Python interface is TextMagic. Their Python API is available from the Google Code project <a href="http://code.google.com/p/textmagic-sms-api-python/" rel="nofollow">textmagic-sms-api-python</a>. They have libraries available for other languages as well; all wrapping a simple HTTPS API.</p>
<p>Code samples from the project website:</p>
<p>How to send an SMS:</p>
<pre><code>client = textmagic.client.TextMagicClient('your_username', 'your_api_password')
result = client.send("Hello, World!", "1234567890")
message_id = result['message_id'].keys()[0]
</code></pre>
<p>And retrieve its delivery status:</p>
<pre><code>response = client.message_status(message_id)
status = response[message_id]['status']
</code></pre>
<p>(Full disclosure: I am the author of the Python wrapper library)</p>