当我尝试通过我的 FBApp 在墙上发帖时遇到此错误,该应用程序曾经可以工作,但昨天我注意到这是抛出此错误。
API Error Code: 100
API Error Description: Invalid parameter
Error Message: redirect_uri URL is not properly formatted.
我的应用程序正在记录用户并且一切正常,它会抛出试图发布的错误。我用来发布的代码是这样的:
FB.ui({
method: 'feed',
name: 'My Title',
link: "http://mysite.com?"+query_string,
caption: '',
description: 'My Description'
},
function(response) {
if (response && response.post_id) {
//alert('Post was published.');
} else {
//alert('Post was not published.');
}
});
另一件事是,我使用的 https 域是托管共享 ssl: https ://vivaro.websitewelcome.com/~username
有任何想法吗?