Privacy Terms

Who We Are At Walk In The Cloud, we are committed to maintaining the trust and confidence of all visitors to our web site. In particular, we want you to know that Walk In The Cloud is not in the business of selling, renting or trading email lists with other companies and businesses for marketing purposes.  In this Privacy Policy, we’ve provided detailed information on when and why we collect personal information, how we use it, the limited conditions under which we may disclose it to others, and how we keep it secure.  We take your privacy seriously and take measures to provide all visitors and users of Walk In The Cloud with a safe and secure environment. Cookies  Walk In The Cloud may set and access Walk In The Cloud cookies on your computer.  Cookies are used to provide our system with the basic information to provide the services you are requesting.  Cookies can be cleared at any time from your internet browser settings.  Google Analytics When someone visits Walk In The Cloud we us

[FB] facebook SDK 開發環境

在開發 facebook 應用程式時

除了需要能支援 php + mysql 外,也要支援 php_curl.dll。



 facebook 回傳資訊時將會用到SSL,FB官網提供的 php - SDK 也用到 php_curl.dll 內的函式庫。

PS. 查看 src/facebook.php 內 19 行有判斷 php.ini 有沒有引用 php_curl.dll。



沒有安裝會出現錯誤500的警訊,另外,可以放入try、catch來找出錯誤在哪。

----------------

 try{
        include_once "./src/facebook.php";
    }
    catch(Exception $o){
        echo '<pre>';
        print_r($o);
        echo '</pre>';
    }



----------------

留言