in reply to Re^2: HTTP::Tiny ssl opt
in thread HTTP::Tiny ssl opt

Hi again,

( Please put your error message inside <code></code> tags, like with code, as it helps to read it and separate it from your message. )

Did you read all the documentation for HTTP::Tiny including the section SSL Support ?

Have you verified that you have the necessary versions of those dependencies?

Have you used the provided method HTTP::Tiny->can_ssl() to see whether you have the needed dependencies?

Please let us know.


The way forward always starts with a minimal test.

Replies are listed 'Best First'.
Re^4: HTTP::Tiny ssl opt
by bigup401 (Pilgrim) on Mar 28, 2017 at 20:36 UTC

    i have tried everything bt http::tiny still validating ssl.

    no way i can disable SSL certificate verification

      What exactly does "tried everything" mean? The error you showed is not even related to validating SSL certificates. You are wasting the time of the Monks!

      Last chance for help from me. Do this:

      Show the version numbers of the two libraries mentioned in the HTTP::Tiny documentation quoted in my post above. Use the following idiom from your command line, substituting each module name one at a time:

      $ perl -MExample::Module -e 'print $Example::Module::VERSION, "\n"'
      Show also the output of:
      $ perl -MHTTP::Tiny -e 'print "$_\n" for (HTTP::Tiny->can_ssl)'


      The way forward always starts with a minimal test.

        according to the documentation http:tiny looks not to support https urls and most examples for http::tiny is in http not https. i have fixed the problem by using the new implementation of http:tiny module called HTTP::Tinyish. HTTP::Tinyish auto-detect if the backend also supports HTTPS, and use the appropriate backend based on the given URL to the request methods

        thanks 1nickt for the help. thanks monks