This question already has an answer here:
cURL is not working when I run curl on my WAMP server. Anyone know how to activate this for php 7.0+?
I have tried to uncomment extension=php_curl.dll in php.ini
Here is my error message:
cURL Error #:SSL certificate problem: unable to get local issuer certificate
</div>
Change php.ini to the following
curl.cainfo="C:/wamp64/ca-bundle.crt"
openssl.cafile="C:/wamp64/ca-bundle.crt"
This worked for me.
Note : You have to restart server after doing above process.