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 am trying to do a simple timeline post on users wall. The user clicks on a image and a authorization process start. I have publish_stream and publish_actions permissions added. After the authorization the program will redirect to the previous page again and a post will be added on his wall! the problem is that although the post is succesfully added it keeps getting me a server internal error after the redirection. this is my code..

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com /2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/">
<head>
</head>
<body style="overflow:hidden;">


<?php 
if($user) {

  // We have a user ID, so probably a logged in user.
  // If not, we'll get an exception, which we handle below.
  try {

  echo '<a href="' . $login_url . '"><img src="contest.jpg"/></a>';
    $attachment = array('message' => 'Μόλις δήλωσα συμμετοχή στον διαγωνισμό της KattiS Fashion!!',
        'caption' => 'Κερδίστε πλούσια δώρα παίζοντας!',
        'name' => 'Διαγωνισμός από την KattiS Fashion',
        'link' => 'https://www.facebook.com/testprojectbill/app_114015822111686',
        'description' => 'Κερδίστε πλούσια δώρα παίζοντας! Λάβετε μέρος στο διαγωνισμό και μπείτε στην κλήρωση για ένα από τα τρία δώρα μας: ένα γυναικείο παλτό ή δύο φορέματα!',
        'picture' => 'http://www.optisoft-apps.com/Cus/Ktis/matchit_frame/kattis_logo.jpg'
    );

    $facebook->api('/'.$user.'/feed/', 'post', $attachment);



  } catch(FacebookApiException $e) {
    // If the user is logged out, you can have a 
    // user ID even though the access token is invalid.
    // In this case, we'll get an exception, so we'll
    // just ask the user to login again here.

    $login_url = $facebook->getLoginUrl(array(
    'scope' => 'email,publish_stream,publish_actions',
    'redirect_uri' => 'http://www.facebook.com/pages/Test-project/271589776281897?sk=app_114015822111686'
    )); 
    echo "<base target='_top' />";
    echo '<a href="' . $login_url . '"><img src="contest.jpg"/></a>';

  }   
} else {
  echo "<base target='_top' />";
  // No user, print a link for the user to login
  $login_url = $facebook->getLoginUrl(array( 
  'scope' => 'email,publish_stream,publish_actions' , 
  'redirect_uri' => 'http://www.facebook.com/pages/Test-project/271589776281897?sk=app_114015822111686'
  ));
  echo '<a href="' . $login_url . '"><img src="contest.jpg"/></a>';

}


?>
share|improve this question

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.