Sending SMS using Way2sms on rails

Can someone help me send sms using way2sms api using rails app.

thank

+3
source share
3 answers

I have developed an API that anyone can use. Check here .

You can use the created web page or use the API. For example, your application can directly redirect a request:

http://ubaid.tk/sms/sms.aspx?uid=99999xxxxx&pwd=12345&msg=YOUR_SMS_MESSAGE&phone=9996669990&provider=way2sms

Different providers are way2sms, fullonsms, smsinside and tezsms.

Works 100%, all the time. :)

: 2014 , TOS .

.

+3

API- , AlfaSMS API way2sms, 160by2.com, fullonsms. , PHP, VB, ++, #, Python .. http://www.alfredfrancis.in/alfasms-api/

+2

There is a ruby ​​stone that I wrote based on the Ubaid API. You can find it here . You can use it in any ruby ​​or rails project as long as you use the ruby ​​version> = 1.9.

require 'chagol'
texter = Chagol::SmsSender("9876543210","password","way2sms")
texter.send("9968154700", "Chagol Rocks")

Disclaimer, I am the author of this gem.

0
source

Source: https://habr.com/ru/post/1736971/


All Articles