☝️ Honestly, it's that easy ☝️. Run the command above and you've installed Blower.io and can send SMS!
Login to the dashboard (heroku addons:open blowerio
) to see your personalized example
of how to send an SMS message using cURL. Or update your app to make a HTTP POST to send an SMS. It
could be as easy as:
blower = RestClient::Resource.new(ENV['BLOWERIO_URL'])
blower['/messages'].post(to: '+123456789', message: 'Hello from Blower')
url = os.environ['BLOWERIO_URL'] + '/messages'
requests.post(url, data={'to': '+123456789', 'message': 'Hello from Blower'})
var request = require('request'),
request.post({
headers: {
'content-type' : 'application/x-www-form-urlencoded',
'Accepts': 'application/json'
},
url: process.env.BLOWERIO_URL + '/messages',
form: {
to: '+123456789',
message: 'Hello from Blower.io';
}
}, function(error, response, body){
})
$url = $_ENV["BLOWERIO_URL"] . "/messages";
$data = array('to' => '+123456789', 'message' => 'Hello from Blower.io');
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
curl -X POST -d "to=+61422164266&message=This is a test from Blower.io" -H "Accept: application/json" $BLOWERIO_URL/messages