2012-11-12 94 views
1

我只是試過,看了一切 - 但不知何故,我仍然無法處理這個問題。 有沒有人有線索?餵養Facebook API錯誤代碼191 - 我做錯了什麼?

詳情請看: http://i1145.photobucket.com/albums/o501/King_Coatie/notworking.gif

+0

嘗試禁用沙盒模式,看看是否有幫助,也嘗試刪除應用程序域,然後嘗試。它可能是那些神祕的沙箱「功能」之一。另外 - 我沒有看到你的FB.init與你的appID任何地方(在JavaScript SDK結束,而不是PHP)。 –

+0

已禁用沙箱 - >沒有任何更改...然後我刪除了應用程序域並再次添加 - >沒有任何更改...將appID添加到我的FB.Init - >並且再次沒有任何更改...錯誤仍然彈出。 。其他想法? :/ – Kris

回答

0

嘗試加載和初始化的Javascript SDK像它的如下所示:

<div id="fb-root"></div> 
<script> 
window.fbAsyncInit = function() { 
// init the FB JS SDK 
FB.init({ 
    appId  : 'YOUR_APP_ID', // App ID from the App Dashboard 
    channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File for x-domain communication 
    status  : true, // check the login status upon init? 
    cookie  : true, // set sessions cookies to allow your server to access the session? 
    xfbml  : true // parse XFBML tags on this page? 
}); 

// Additional initialization code such as adding Event Listeners goes here 

}; 

    // Load the SDK's source Asynchronously 
(function(d, debug){ 
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0]; 
if (d.getElementById(id)) {return;} 
js = d.createElement('script'); js.id = id; js.async = true; 
js.src = "//connect.facebook.net/en_US/all" + (debug ? "/debug" : "") + ".js"; 
ref.parentNode.insertBefore(js, ref); 
}(document, /*debug*/ false)); 
</script> 

http://developers.facebook.com/docs/reference/javascript/

您需要提供的appid到FB對象上,識別它正在處理的應用程序。

+0

即使在我更改Init腳本並將app_id添加到我的函數postToFeed之後...仍然有相同的錯誤:/ – Kris

+0

您需要將appId提供給init函數,而不是您的postToFeed函數。還要確保在FB.init()之前不要調用該函數。我最好的猜測是它是FB.init()的一部分。如果不是這樣,請嘗試用redirect_uri中的http替換https,因爲您調用非安全Facebook SDK(http)並希望它打開安全重定向(https),這可能是衝突。 –