Facebook CurlException 3没有设置URL

时间:2013-04-25 12:38:07

标签: php facebook-graph-api curl facebook-php-sdk

我正在

FacebookApiException对象    (

[result:protected] =>阵列

(           [error_code] => 3            [错误] =>排列                 (                     [message] =>没有设置URL!                     [type] => CurlException                 )

    )

[message:protected] => No URL set!
[string:private] => 
[code:protected] => 3
[file:protected] => /home5/theteci0/public_html/team/fb6/base_facebook.php
[line:protected] => 979
[trace:private] => Array
    (
        [0] => Array
            (
                [file] => /home5/theteci0/public_html/team/fb6/base_facebook.php
                [line] => 911
                [function] => makeRequest
                [class] => BaseFacebook
                [type] => ->
                [args] => Array
                    (
                        [0] => https://graph.facebook.com/172535322883581_253291878141258
                        [1] => Array
                            (
                                [fields] => updated_time
                                [method] => GET
                                [access_token] => /*Acc_tkn*/
                            )

                    )

            )

        [1] => Array
            (
                [file] => /home5/theteci0/public_html/team/fb6/base_facebook.php
                [line] => 878
                [function] => _oauthRequest
                [class] => BaseFacebook
                [type] => ->
                [args] => Array
                    (
                        [0] => https://graph.facebook.com/172535322883581_253291878141258
                        [1] => Array
                            (
                                [fields] => updated_time
                                [method] => GET
                            )

                    )

            )

        [2] => Array
            (
                [file] => /home5/theteci0/public_html/team/fb6/base_facebook.php
                [line] => 656
                [function] => _graph
                [class] => BaseFacebook
                [type] => ->
                [args] => Array
                    (
                        [0] => /172535322883581_253291878141258
                        [1] => GET
                        [2] => Array
                            (
                                [fields] => updated_time
                            )

                    )

            )

        [3] => Array
            (
                [file] => /home5/theteci0/public_html/team/user/comments.php
                [line] => 71
                [function] => api
                [class] => BaseFacebook
                [type] => ->
                [args] => Array
                    (
                        [0] => Array
                            (
                                [0] => Facebook Object
                                    (
                                        [appId:protected] => 
                                        [appSecret:protected] => 
                                        [user:protected] => 
                                        [signedRequest:protected] => 
                                        [state:protected] => 
                                        [accessToken:protected] => /*Acc_tkn*/
                                        [fileUploadSupport:protected] => 
                                        [trustForwarded:protected] => 
                                    )

                                [1] => _graph
                            )

                        [1] => Array
                            (
                                [0] => /172535322883581_253291878141258
                                [1] => GET
                                [2] => Array
                                    (
                                        [fields] => updated_time
                                    )

                            )

                    )

            )

    )

)

我收到很多错误,如何预防或解决?

1 个答案:

答案 0 :(得分:0)

对于IPV6的问题,您应该在facebook api中包含以下行。

Facebook::$CURL_OPTS[CURLOPT_IPRESOLVE] = CURL_IPRESOLVE_V4;

然而,此替代方案仅适用于php最大版本5.3和Curl版本> 7.10.8

溶液:

if((phpversion()>= 5.3)){ Facebook::$CURL_OPTS[CURLOPT_IPRESOLVE] = CURL_IPRESOLVE_V4; }