Perl 500 certificate verification

I use the WWW :: Salesforce perl library to log in and retrieve some data. But I get this error when logging in -

Failed to verify perl 500 certificate

I installed LWP::UserAgent Mozilla::CAand CACertOrg::CA, but this does not fix the problem.

Is there any certificate I have to download for it to work?

+4
source share
1 answer

Try installing Crypt :: SSLeay and LWP :: Protocol :: https.

Good reading about this issue: http://blogs.perl.org/users/brian_d_foy/2011/07/now-you-need-lwpprotocolhttps.html

: LWP

export PERL_LWP_SSL_VERIFY_HOSTNAME=0

,

+2

All Articles