-1

I am creating an image from my Facebook application. I am getting the following error from Facebook.

CurlException: 56: SSL read: error:00000000:lib(0):func(0):reason(0), errno 104

Is there anything wrong in my code?

4

1 回答 1

0

在不查看您的代码或不知道您的 SSL 证书是否存在实际问题(您不应忽略)的情况下,尝试以下方法作为解决方法:

<?php

$retry=False;

do {

   try {
     //your code goes here
     $retry=False;
     }

  catch (Exception $e) {
     echo $e->getMessage(), "\n";
     $retry=True;
     }
  }
  while ($retry);

?>
于 2011-10-20T17:26:28.167 回答