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 trialelad sivan
10,702 PointsSSL 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
18,684 PointsHi 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
10,702 Pointselad sivan
10,702 Pointsthanx!!! it works!