Net::MBlox - link to the MBlox api for sending SMS
version 0.004
use WWW::MBlox;
#new will fetch a token via oauth so you can make requests straight away.
my $mb = Net::Mblox->new(
consumer_key => 'key',
consumer_secret => 'secret',
app_id => 'xxxxxx',
);
$mb->query('sms/outbound/messages',{
message => "Test SMS",
destination => 44xxxxxxx,
originator => 44xxxxxxx,
});
Net::MBlox - link to the mblox api for sending SMS
Please report any bugs or feature requests through the issue tracker at https://github.com/purge/net-mblox/issues. You will be notified automatically of any progress on your issue.
This is open source software. The code repository is available for public review and contribution under the terms of the license.
https://github.com/purge/net-mblox
git clone git://github.com/purge/net-mblox.git
Simon Elliott <[email protected]>
This software is copyright (c) 2013 by Simon Elliott.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.