Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: LWP_SSL_Verify_mode option

by Khen1950fx (Canon)
on Oct 31, 2013 at 04:33 UTC ( [id://1060511]=note: print w/replies, xml ) Need Help??


in reply to LWP_SSL_Verify_mode option

First, I've never actually used Frontier::Client. Second, if I was inclined to use it, I would probably go with something like this:
#!/usr/bin/perl -l use strict; use warnings; use LWP::UserAgent; use Frontier::Client; use Data::Dumper::Concise; my $ua = LWP::UserAgent->new( ssl_opts => { verify_hostname => 0 }, protocols_allowed => ['https'], ); my $req = HTTP::Request->new( GET => 'https://pause.perl.org', ); my $res = $ua->request($req); print $res->code; my $server = Frontier::Client->new( url => 'https://pause.perl.org', encoding => 'ISO-8859-1', debug => 1, ); my $date_time = $server->call('date_time'); print Dumper( $date_time );
I was was just trying to make it work, so feel free to add to or subtract from ssl_opts. Good luck:-).

Replies are listed 'Best First'.
Re^2: LWP_SSL_Verify_mode option
by Anonymous Monk on Nov 01, 2013 at 03:58 UTC

    First, I've never actually used Frontier::Client. Second, if I was inclined to use it, I would probably go with something like this:

    Double request? Smart!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1060511]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-03-29 07:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found