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.

I want to post in my Facebook page Wall a message through my web page. I manage to do this with the next code:

<?php
$config['baseurl']  =   "http://....facebook/index.php";

if ($fbme){
    if (isset($message)){
        try {
            $statusUpdate = $facebook->api('/me/feed', 'post', array('message'=> $message, 'picture'=> $Image,'cb' => ''));
        } catch (FacebookApiException $e) {
            d($e);
        }
    }
}
?>

I am using the $config in the login and logout functions:

function login(){
     document.location.href = "<?=$config['baseurl']?>";
 }
 function logout(){
     document.location.href = "<?=$config['baseurl']?>";
 }

Also I am using a facebook button for login:

<fb:login-button autologoutlink="true" onlogin="parent.location='http://www.facebook.com/profile.php?id=<?php echo $uid ?>'" perms="email,user_birthday,status_update,publish_stream"></fb:login-button>

Ok. Now when I click a button in my web site I go to my facebook application and first of all if asks me to login. Then when I am logged in I go immediately to my profile page for see the message in my Wall. everything works ok. The problem is that when I am refreshing my facebook page I get again the same message in my Wall, so I have it twice. This happens only two times.

Does anyone know what could be wrong?

Thanks in advance

share|improve this question

1 Answer

Anyway I changed the login function and it worked:

 function login(){
        //document.location.href = "<?=$config['baseurl']?>";
        parent.location = "http://www.facebook.com/profile.php?id=<?=$uid ?>"
   }

My problem is that this thing works only in Firefox, not in IE, Safari and Chrome. Does anyone know how to solve it??

Thanks

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.