Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I m using the PHP facebook sdk v3.0.0 to post comments on Facebook user's wall. Here is the code used:

    $args = array(
        "message" => $message,
        "link" => $link,
        "Caption" => $messageCaption,
    );
    try {
        $postId = $this->api("/$userFBId/feed", "post", $args);
        return $postId;
    } catch (FacebookApiException $e) {
        throw $e;
    }    

When I execute it, I got the following error message:

error setting certificate verify locations: CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none

I would like to mention that I've added an SSL certificate to my website. It seems that Facebook SDK is using the default location for certificates. But I'm on a shared server and the certificate file is located in a customized folder.

Please, how to solve this issue ? Is there a way to specify to facebook SDK how to use a customized file for CAfile and CApath ?

Many Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.