Laravel Socialite testing on localhost, SSL certificate issue?

狂风中的少年 提交于 2019-11-27 01:12:54

问题


To insert social login integration on my application, I'm adding Socialite library to my Laravel app. I have a facebook app registered and 2 methods as in laravel documentation: http://laravel.com/docs/5.0/authentication#social-authentication

public function redirectToProvider()
{
    return Socialize::with('github')->redirect();
}

public function handleProviderCallback()
{
    $user = Socialize::with('github')->user();
    dd($user);
}

The request gets submitted to and returned from Facebook sucessfully, but once I reach the callback URL: localhost:8000/social (where the handleProviderCallback()) is called, I get the following error:

RequestException in RequestException.php line 51: cURL error 60: SSL certificate problem: unable to get local issuer certificate

I have tried turning off my firewall, but had no success.. getting really frustrated, can someone help me out?


回答1:


I found sollution here. I've downloaded this file

http://curl.haxx.se/ca/cacert.pem

and set path in php.ini

[cURL] 
curl.cainfo=C:\php\cacert.pem

It works after server restart.



来源:https://stackoverflow.com/questions/28635295/laravel-socialite-testing-on-localhost-ssl-certificate-issue

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!