I'm new to php and facebook apps - I'm trying to teach myself how to build one. I seem to have everything working okay, the only problem I run into is my access token. My test app in Facebook has two pages - the index.php page and the upload.php page. navigating to the main page (index.php) is no problem, however, when I click a link on the index.php to upload.php, I sometimes run into some problems. For example - when try to access the app via mobile, I get an error message that I need an active access token. I've built this test app from my little knowledge of php and some tutorials online - so please, any help is appreciated. Is there something I'm doing wrong when retrieving the access token? Do I need to do this another way?
Here are the two php files:
index.php
<?php
$app_id = "475591815833141";
$app_secret = "REMOVED";
$canvas_page = "https://apps.facebook.com/REMOVED/";
require_once 'facebook.php';
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $app_secret,
'cookie' => true,
));
$auth_url = "http://www.facebook.com/dialog/oauth?client_id="
. $app_id . "&redirect_uri=" . urlencode($canvas_page) .
("&scope=email,user_likes,publish_stream&response_type=token");
$signed_request = $_REQUEST["signed_request"];
list($encoded_sig, $payload) = explode('.', $signed_request, 2);
$data = json_decode(base64_decode(strtr($payload, '-_', '+/')), true);
// If the user has NOT authorized the app:
if (empty($data["user_id"])) {
echo("<script> top.location.href='" . $auth_url . "'</script>");
// If the user has authorized the app:
} else {
$token = $facebook->getAccessToken();
$facebook->setAccessToken($token);
$user_profile = $facebook->api('/me');
$user_profile = $facebook->api('/me','GET');
$facebook_id = $user_profile ['id'];
$user_firstname = $user_profile['first_name'];
$user_lastname = $user_profile['last_name'];
$user_gender = $user_profile['gender'];
$user_email = $user_profile['email'];
$user_locale = $user_profile['locale'];
$user_location = $user_profile['location']['name'];
}
?>
upload.php
<?php
$app_id = "475591815833141";
$app_secret = "REMOVED";
$canvas_page = "https://apps.facebook.com/REMOVED/";
require_once 'facebook.php';
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $app_secret,
'cookie' => true,
));
$signed_request = $_REQUEST["signed_request"];
list($encoded_sig, $payload) = explode('.', $signed_request, 2);
$data = json_decode(base64_decode(strtr($payload, '-_', '+/')), true);
$token = $facebook->getAccessToken();
$facebook->setAccessToken($token);
$user_profile = $facebook->api('/me');
$user_profile = $facebook->api('/me','GET');
$facebook_id = $user_profile ['id'];
?>