我正在使用下面的代码并尝试在我的本地机器上运行。我无法连接到 facebook。可能是什么问题?
<html>
<head>
<title>My Facebook Login Page</title>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '', // App ID
channelUrl : ' ', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
function publish(){
FB.ui({ method: 'feed',
message: 'Facebook for Websites is super-cool'});
};
}
// 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>
<button onclick="publish()">PUBLISH ON FACEBOOK</button>
</body>
</html>