Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
are the ssl site and the http site on the same domain? is it a subdomain? – zachallia Jan 12 '12 at 17:47
No, it is different domain. – networ Jan 13 '12 at 8:11
that's the problem, it has to be the same domain that is set in your facebook app settings so when they log in the cookie is available – zachallia Jan 14 '12 at 20:43
Ok, but is there aby way how to do this on 2 domains? – networ Jan 16 '12 at 16:24
no, apps are limited to one base domain. you could, however, do it across subdomains. So your ssl site could be on a different subdomain than your non ssl site – zachallia Jan 16 '12 at 17:31

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.