I've set up a simple app to run in a page tab. After authorizing the use of the app, just for basic info, it checks if the user likes the page. If they don't it asks for you to like the page before proceeding - but if you click the LIKE button at that point it's not refreshing the page so I don't see the change in my app. The user is left hanging and has to click the page tab again to proceed, at which point it lets you in. If you like the page before starting, everything works fine and the LIKE button refreshes the page as normal.
Is there a reason for this? Or am I missing a trick - should I add my own LIKE button or something?
Help appreciated as I'm really new to facebook apps.
EDIT - I'm using Asp.Net C# if that makes a difference. I found it very hard to find any good documentation so I've pieced this together as best I can, so excuse the messiness. Here's the HTML page code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="http://connect.facebook.net/en_US/all.js" type="text/javascript"></script>
<script type="text/javascript">
FB.init({
appId: '9999999999',
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true // parse XFBML
});
</script>
<script type="text/javascript">
window.fbAsyncInit = function () {
FB.Canvas.setSize({ width: 520, height: 1300 });
}
// Do things that will sometimes call sizeChangeCallback()
function sizeChangeCallback() {
FB.Canvas.setSize({ width: 520, height: 1300 });
}
</script>
</head>
<body style="width:520px;margin:0; padding:0; border:0;font-family:Arial;font-size:12px;">
<form id="form1" runat="server">
<div id="fb-root">
<div id="intro" runat="server" style="width:520px;background-color:#FFFFFF;">
Enter our competition<br />
<br />
<asp:Button ID="authorise" runat="server" Text="authorise" OnClick="Authorise_Click" />
</div>
<div id="voting" runat="server" visible="false" style="background-color:#FFFFFF;width:520px;padding:0px">
<div id="notliked" runat="server" visible="false">
You must LIKE our page before you can enter the competition
</div>
<div id="questions" runat="server" visible="false">
<div id="week1" runat="server" visible="false">
Q1 Q2 Q3
</div>
<div id="week2" runat="server" visible="false">
Q4 Q5 Q6
</div>
<div id="entereddiv" runat="server" visible="false">
You have already entered this week's competition.
</div>
</div>
</div>
<div id="terms" runat="server" style="color:Black;font-size:11px;width:450px;">
</div>
</div>
</form>
<script type="text/javascript">
window.fbAsyncInit = function () {
FB.init({ appId: '9999999999', status: true, cookie: true, xfbml: true, oauth: false });
// If like button pressed, refresh page
FB.Event.subscribe('edge.create', function (response) { top.location = 'http://www.facebook.com/pages/MY_PAGE_NAME/PAGE_ID?sk=app_9999999999'; });
};
(function () {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
} ());
</script>
</body>
</html>