View Single Post
blubbi's Avatar
Posts: 288 | Thanked: 113 times | Joined on Dec 2009 @ Germany
#150
Originally Posted by maya View Post
well, I do not know what you need, but the betamax has the same pattern. Something like:
https: / / www.voipbusterpro.com / myaccount / sendsms.php
https: / / www.telbo.com / myaccount / sendsms.php
always with login, password and phone number, of course.
Okay, voipbusterpro seems to have a nice API and it is no problem to include it:
http://www.voipbusterpro.com/en/sms_instructions.html
Code:
https://www.voipbusterpro.com/myaccount/sendsms.php?username=xxxxxxxxxx​&password=xxxxxxxxxx&from=xxxxxxxxxx&to=xxxxxxxxxx&text=xxxxxxxxxx


Explanation of the variables: 
username: your VoipBuster Pro username 
password: your VoipBuster Pro password 
from: your username or your verified phone number. Always use international format for the number starting with +, for instance +491701234567 
to: the number you wish to send the sms to. Always use international format starting with +, for instance +491701234567 
text: the message you want to sendd
Telbo seems to use the same API:
Code:
https://www.telbo.com/myaccount/sendsms.php?username=xxxxxxxxxx​&password=xxxxxxxxxx&from=xxxxxxxxxx&to=xxxxxxxxxx&text=xxxxxxxxxx


Explanation of the variables: 
username: your Telbo username 
password: your Telbo password 
from: your username or your verified phone number. Always use international format for the number starting with +, for instance +491701234567 
to: the number you wish to send the sms to. Always use international format starting with +, for instance +491701234567 
text: the message you want to send
So it should be easy to include these two provider.

As soon as I figured out how to precompile the python files within the debian/rules file I'll add those two provider.

Cheers
Bjoern