2014-03-04 65 views
0

我正在爲Facebook創建pagetab應用程序,同時向Facebook分享內容時會顯示以下錯誤。使用Facebook在Facebook中分享時共享錯誤191

An error occurred. Please try again later. 

API Error Code: 191 
API Error Description: The specified URL is not owned by the application 
Error Message: redirect_uri is not owned by the application. 

我使用下面的代碼

FB.ui({ 
    method: 'feed', 
    name: 'Jag har blivit månadsgivare hos Hundstallet!', 
    caption: '', 
    description: (
       'Hundstallet hjälper hundar som farit illa till ett lyckligt ' + 
           'och tryggt liv. Hjälp dem du med!' 
         ), 
    link: '<?php echo $pageTabUrl;?>', 
    picture: 'https://hundstallet.tas.se/monthlydonor/images/share.jpg' 
    }, 
    function(response) { 
       if (response && response.post_id) { 
        // alert('Post was published.'); 
        } else { 
        // alert('Post was not published.'); 
        } 
    } 
      ); 

如果我創建具有相同的URL到pagetab URL的Facebook開發面積畫布應用程序,共享工作正常,但如果我刪除畫布應用程序,只保留pagetab應用程序,它顯示上述錯誤。

回答

0

補「與Facebook登錄網站」 =>網站URL地址爲

添加域「應用程序域」

你將不能夠,如果你跳過第一步

保存