Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress How to Build a WordPress Plugin Connecting WordPress Plugins with 3rd Party APIs Getting and Storing a JSON Feed

elad sivan
elad sivan
10,702 Points

SSL problem when i try to get the json file

i'm developing localhost (xampp) when i var_dump the result i get the following: object(WP_Error)#4660 (2) { ["errors"]=> array(1) { ["http_request_failed"]=> array(1) { [0]=> string(63) "SSL certificate problem: unable to get local issuer certificate" } } ["error_data"]=> array(0) { } }

1 Answer

Nicholas Pretorius
Nicholas Pretorius
18,683 Points

Hi Elad,

In the array of arguments you pass to the wp_remote_post() function, you can set 'sslverify' => false.

  $args = array(
    'sslverify' => false,
  );
elad sivan
elad sivan
10,702 Points

thanx!!! it works!