Im getting this error:
Fatal error: Uncaught OAuthException: An active access token must be used to query information about the current user. thrown in
It only happens to users with HTTPS enbaled, it cause, because I have my app hosted on hosting without SSL. So Im using 2 hosting.
I add my app from non-SSL hosting to iframe to my SSL host and then get this error...
Here is my code:
<?php
require "../fbapi/src/facebook.php";
$app_id = "xxxxxxxxx";
$app_secret = "xxxxxxxxxxxx";
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $app_secret,
'cookie' => true
));
$facebook->setFileUploadSupport(true);
//Create an album
$album_details = array(
'message'=> 'Testing album from app',
'name'=> 'TEST'
);
$create_album = $facebook->api('/me/albums', 'post', $album_details);
//Get album ID of the album you've just created
$album_uid = $create_album['id'];
//Upload a photo to album of ID...
$photo_details = array(
'message'=> 'Hi, AMAZING!!!'
);
$file='../../nothing.png'; //Example image file
$photo_details['image'] = '@' . realpath($file);
$upload_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details);
try{
$res = $facebook->api('/me/feed','POST',$post);
} catch (Exception $e){
echo $e->getMessage();
}
?>
How can I use acces token in this iframe? Thanks!