我使用FB.api发布状态。但是得到像Facebook应用程序中的应用程序配置错误不允许“给定URL”这样的错误。我在谷歌搜索了这个。我知道重定向uri应该与Facebook应用程序的网站URL相同。但在我的代码中,我无法使用重定向uri。这是我的代码
<html>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'ID', // App ID
channelUrl : 'http://localhost/APP/chnel.php', // Channel File
status : true, // check login status
cookie : true,
xfbml : true // parse XFBML
});
// Additional initialization code here
FB.login(function(response) {
if (response.authResponse) {
console.log('Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
console.log('Good to see you, ' + response.name + '.');
});
} else {
console.log('User cancelled login or did not fully authorize.');
}
});
};
// Load the SDK Asynchronously
(function(d){
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 = "http://connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
</body>
</html>
所以我怎么能解决这个问题。我只在localhost中开发应用程序