My application using the Facebook SDK for PHP v2.0 has stopped working in the past 20-24 hours. I keep getting the following error: base_facebook.php -
CurlException: 35: error: 14094410: SSL procedures: SSL3_READ_BYTES: sslv3 notification failure failed
From reading other threads in stackoverflow, I added the following lines of code to base_facebook.php, but none of them help.
$opts[CURLOPT_SSL_VERIFYPEER] = false; $opts[CURLOPT_SSL_VERIFYHOST] = false; $opts[CURLOPT_SSLVERSION] = 3; curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, 'SSLv3');
Any suggestions for fixing the problem would be greatly appreciated. Thanks.
php curl ssl facebook-graph-api facebook-php-sdk
bluenile
source share