The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WebService::DeveloperGarden - Use DeveloperGarden APIs from Perl

VERSION

version 0.01

SYNOPSIS

    use WebService::DeveloperGarden;
    
    my $dg = WebService::DeveloperGarden->new(
        client_id     => $client_id,
        client_secret => $client_secret,
    );

    # send a sms
    my $sms_sender = $dg->sms;

    # use features of "premium" environment
    # my $sms_sender = $dg->sms( environment => 'premium' );

    $sms_sender->send(
        to   => $recipient_phone_number,
        from => $your_phone_number,
        text => $text_of_sms,
        uid  => $unique_id_for_sms, # optional
    );

AUTHOR

Renee Baecker <reneeb@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2013 by Renee Baecker.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)