cURL错误60:SSL证书问题:无法获取本地颁发者证书(请参阅http://curl.haxx.se/libcurl/c/libcurl-errors.html)
尝试了多种解决方案,但没有解决此问题我尝试了所有解决方案:https://laracasts.com/discuss/channels/laravel/how-to-solve-curl-error-60-ssl-certificate-in-laravel-5-while-facebook-authentication本地主机上的Laravel社交名流测试,SSL证书问题?
public function getSocialAuth()
{
return Socialite::driver('github')->redirect();
}
简单的解决方案。测试。你可以打开你的php.ini文件。改变这个
;openssl.cafile=
到
openssl.cafile=C:/Windows/curl-ca-bundle.crt
(注意分号被删除了?)
在系统中搜索名为curl ca bundle的文件。crt并将其放在C:/Windows中
我希望它在Mac和其他系统上也能工作。只要选择正确的道路。就这样。