Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Well, normally this isn't a code writing service, but if it helps Perl programmers, I guess it's for a good cause ;-) Will this documentation be public somewhere?

If I understood the C# code correctly, here's one way to do it with HTTP::Tiny and URI (for SSL support, IO::Socket::SSL and Net::SSLeay need to be installed too):

#!/usr/bin/env perl use warnings; use strict; use URI; use HTTP::Tiny; my $uri = URI->new('https://api.zerobounce.net/v1/validate'); $uri->query_form( apikey => 'Your Secret Key', email => 'example@example.com', #ipaddress => '99.123.12.122', ); my $response = HTTP::Tiny->new->get( $uri, { timeout=>15 } ); # in seconds die "Failed! $response->{status} $response->{reason}\n" unless $response->{success}; my $responseString = $response->{content};
an online Perl compiler that allows JSON REST Calls

I'd recommend installing Perl locally for testing (and perhaps just pointing the script at a different URL for testing). It comes pre-installed on many *NIX systems, and on Windows, Strawberry Perl makes things fairly easy. All of the aforementioned modules are included in the latest Strawberry Perl release, while on *NIX, some of them may need to be installed.


In reply to Re: Help me convert this to Perl by haukex
in thread Help me convert this to Perl by topcoder

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (9)
As of 2024-04-25 11:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found