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應用程序,它顯示上述錯誤。