i have all these setting enable, but i still get the error. Below is my code:
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script language="javascript">
FB.init({
appId : applicationID,
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
oauth : true // enables OAuth 2.0
});
FB.getLoginStatus(function(response) {
console.log(response);
if (response.authResponse) {
user_id = response.authResponse.userID;
accessToken = response.authResponse.accessToken;
FB.api({
access_token: accessToken ,
method: 'fql.query',
query: 'SELECT uid FROM page_fan WHERE uid='+user_id+' AND page_id='+pageID
}, function(resp) {
if (resp.length) {
top.location.href = applicationUrl
} else {
document.getElementById("princess-container").style.display = 'block';
}
}
);
} else {
oauthoriseApplication();
}
});
FB.Event.subscribe('edge.create', function(response) {
top.location.href = applicationUrl
});