This might be tricky to explain but I'll try my best.
I have a tab on my Facebook page which is fan-gated, if the user likes the page I want to redirect to my app canvas page (app is multiple pages and canvas is the only way to do it as far as I know).
So far I can get the fan-gate partially working - if the user doesn't like the page show the fangate, if not redirect to the canvas page but the problem is, because my app is actually a wordpress site I am using the wp-book plugin which serves all the pages through it's index page which contains my fangate code, so when I redirect to the app canvas home page, I still see the fan gate (well, this was the case but now I am stuck in an infinite loop)!
So far I have tried using sessions and cookies but still can't seem to solve it.
Here is the relevant code
index
// check if the session variable is set
if ($_COOKIE['fan'] != 1) {
// detect if the current user has liked the page or not
$signed_request = $_REQUEST['signed_request'];
list($encoded_sig, $payload) = explode('.', $signed_request, 2);
$data = json_decode(base64_decode(strtr($payload, '-_', '+/')), true);
$app_data = isset($data['app_data']) ? $data['app_data'] : '';
$_REQUEST['fb_page_id'] = $data['page']['id'];
$access_admin = $data['page']['admin'] == 1;
$has_liked = $data['page']['liked'] == 1;
}
if($has_liked) {
setcookie('fan',1,time() + (86400 * 365)); // 86400 = 1 day
}
if($_COOKIE['fan'] == 1) {
// make sure we are on the app canvas page and not the timeline page before we show anything but the fangate
function curPageURL() {
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {
$pageURL .= "s";
}
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80") {
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
$page_url = curPageURL();
if (strpos($page_url, 'whereappishosted.com') !== false) {
flush();
<script type="text/javascript">
top.location.href='http://apps.facebook.com/app_id/';
</script>
<?php
exit();
}
// individual pages are served from the same index.php
The cookie logic seems to be working except that I am now stuck in an infinite redirect for some reason, when I was doing it before it was actually redirecting to my app canvas home page but still showing the fan gate image.
I know it's not pretty but I figured someone would have done something like this before from SO.
Any help is greatly appreciated.
