我想從我的Facebook頁面發佈帖子,任何人都可以告訴我要做的步驟嗎?我在網絡上看到解決方案,但無法得到該做什麼,任何人都可以幫助我做到這一點?我只有這個代碼。如何使用javascript或php從facebook頁面獲取帖子
<html>
<script src="https://connect.facebook.net/en_US/all.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<body>
<p><a href="#" onClick="logInWithFacebook()">Log In with the JavaScript SDK</a></p>
<script>
logInWithFacebook = function() {
FB.login(function(response) {
if (response.authResponse) {
alert('You are logged in & cookie set!');
// Now you can redirect the user or do an AJAX request to
// a PHP script that grabs the signed request from the cookie.
} else {
alert('User cancelled login or did not fully authorize.');
}
});
return false;
};
window.fbAsyncInit = function() {
FB.init({
appId: 'my-app-key',
cookie: true, // This is important, it's not enabled by default
version: 'v2.2'
});
};
</script>
</body>
</html>
「我只是有這個工作代碼」你確定嗎? – byxor
錯誤的是:「無法加載網址:此網址的網域未包含在應用的網域中,爲了能夠加載此網址,請將您的應用的所有網域和子網域添加到應用中的應用網域字段設置「。 –
所以你的代碼_isn't_然後工作。你應該在你的問題中解決這個錯誤。 – byxor