Код: Выделить всё
cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)
< /code>
Я следовал решению по тестированию Laravel Sociality на локальном хосте, выпуск сертификации SSL? и Laravel 5.2 Socialite Facebook Login Curl Error 60, но все же, та же проблема. Вот мой код < /p>
public function facebook()
{
return $this->socialite->with('facebook')->redirect();
}
public function facebookCallback()
{
$user = $this->socialite->with('facebook')->user();
dd($user);
}
public function google()
{
return $this->socialite->driver('google')->redirect();
}
public function googleCallback()
{
$user = $this->socialite->driver('google')->user();
dd($user);
}`
Подробнее здесь: https://stackoverflow.com/questions/395 ... ificate-us
Мобильная версия