我的Facebook應用程序的非常簡單的幾行字,使用新的Facebook API:無法與Facebook應用程序進行會話? (使用它的圖形API)
<pre>
<?php
require 'facebook.php';
// Create our Application instance.
$facebook = new Facebook(array(
'appId' => '117676584930569',
'secret' => '**********', // hidden here on the post...
'cookie' => true,
));
var_dump($facebook);
?>
,但它給我下面的輸出:
http://apps.facebook.com/woolaladev/i2.php會發出
object(Facebook)#1 (6) {
["appId:protected"]=>
string(15) "117676584930569"
["apiSecret:protected"]=>
string(32) "**********" <--- just hidden on this post
["session:protected"]=>
NULL <--- Session is NULL for some reason
["sessionLoaded:protected"]=>
bool(false)
["cookieSupport:protected"]=>
bool(true)
["baseDomain:protected"]=>
string(0) ""
}
由於某種原因,會話爲NULL,但我已登錄並且可以訪問我的家庭和個人資料並在Facebook上運行其他應用(以查看我已登錄)。
我下面的樣品上:
http://github.com/facebook/php-sdk/blob/master/examples/example.php
http://github.com/facebook/php-sdk/blob/master/src/facebook.php
(使用原始URL下載:wget的http://github.com/facebook/php-sdk/raw/master/src/facebook.php)
兩個託管公司試圖在dreamhost.com和netfirms.com,結果是一樣的。
只好完全相同的問題,尋找解決方案:/ [*沒有運氣尚未*] – Ish 2011-05-18 17:25:09