jacksparrow007
jacksparrow007

Reputation: 1328

perl 500 certificate verify failed

I am using the WWW::Salesforce perl library to login and fetch some data. But I get this error on login -

perl 500 certificate verify failed

I've installed LWP::UserAgent Mozilla::CA and CACertOrg::CA but it didnt fix the issue.

Is there any certificate I've to download for it to work?

Upvotes: 4

Views: 2286

Answers (1)

user1126070
user1126070

Reputation: 5069

Please try install Crypt::SSLeay and LWP::Protocol::https too.

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

You could try this: Scripts broke after upgrading LWP "certificate verify failed"

export PERL_LWP_SSL_VERIFY_HOSTNAME=0

Regards,

Upvotes: 2

Related Questions