The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

WWW::Plivo - Plivo interface to WWW

VERSION

Version 0.01

SYNOPSIS

Plivo interface - copied from WWW::Twilio and tweaked for Plivo access - see Twilio version for details.

NAME

WWW::Plivo::API - Accessing Plivo via Perl

SYNOPSIS

  use WWW::Plivo::API;

  my $twilio = WWW::Plivoo::API->new(AccountSid => 'AC12345...',
                                     AuthToken  => '1234567...');

  ## make a phone call
  $response = $twilio->POST( 'Calls',
                             From => '1234567890',
                             To   => '8905671234',
                             Url  => 'http://domain.tld/send_twiml' );

  print $response->{content};

COMPATIBILITY NOTICE

This code has been tested for SMS::Send only.

DESCRIPTION

WWW::Plivo::API aims to make connecting to and making calls via Plivo service.

See the Twilio documentation for details.

EXAMPLES

See the Twilio documentation for details.

SEE ALSO

LWP(1), http://www.plivo.com/

AUTHOR

Mike Lempriere, <mikevntnr@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2023 by Mike Lempriere

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.1 or, at your option, any later version of Perl 5 you may have available.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 186:

=back without =over