I am making a Facebook fan gate with FQL query to the page_fan using JS
I find that the query sometimes return the correct result and sometimes return an empty array. It looks like that the query is working only if you are lucky at that moment lol. Is it a sync or delay problem?
My script is as follows:
<script>
FB.init({
appId : 'XXXXXXXXXXXX',
channelUrl : 'www.domain.com/channel.html',
status : true,
cookie : true,
xfbml : true
});
FB.login(function (response){
if (response.authResponse) {
FB.getLoginStatus(function (response2) {
var uid = response2.authResponse.userID;
var var_access_token = response2.authResponse.accessToken;
console.log('Access Token = '+ var_access_token);
FB.api({
method: 'fql.query',
query: 'SELECT uid FROM page_fan WHERE page_id = 1196059880xxxxx AND uid = me()',
access_token: var_access_token,
}, function (response3) {
if (response3.length == 1) {
document.getElementById("HasLiked").style.display = 'block';
}
else {
document.getElementById("HasNotLiked").style.display = 'block';
}
});
}, {scope: 'user_status, user_likes'} );
}else {
console.log('User cancelled login or did not fully authorize.');
document.getElementById("HasNotLiked").style.display = 'block';
}
}, {scope: 'user_status, user_likes'} );
</script>
<div id="HasLiked" style="display:none ;">
<h3>
"LIKE"
</h3>
</div>
<div id="HasNotLiked" style="display:none ;">
<h3>
"NOT LIKE"
</h3>
</div>