0

问题可以在这里查看 http://antipinagroup.com/collections/sac-de-voyage

通过 fb 应用程序 ui 共享时会加载两个弹出窗口 - 提要对话和空白页面。无法解决问题。任何想法为什么会发生以及如何解决它?

形成代码

    objFB = {
method: 'feed',
link: document.location.href,
picture: fullPathImage + numimg +".jpg",
name: dataBl.title,
caption: dataBl.title,
description: dataBl['text description']};

_share = _share.replace(/href="javascript:;"/g,  'onclick="postToFeed(); return false;"' );                 
    $( "." + mainBlockClass + " #overlay_" +  mainBlockClass ).html( _share );
    break;}}); 

    (function(d){FB.init({appId: "151107748411463", status: true, cookie: true});}(document));
    function postToFeed() { function callback(response) { /*console.log(response);*/ }FB.ui(objFB, callback);}
4

1 回答 1

0

当我尝试你的 FB 分享时,我得到的只是

An error occurred. Please try again later.

 API Error Code: 1
 API Error Description: An unknown error occurred
 Error Message: kError 1349040: Invalid App ID: The provided app ID is invalid.

如您所见,我在您的页面创建&show_error=true的提要对话框 URL 的末尾添加了该 URL,这始终(好的,大多数情况下)有助于查找 FB 对话框的错误。

所以首先在你的代码中检查你的应用程序 ID。

于 2013-06-22T16:31:06.027 回答