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 have a form which is redirecting to a php script to add fields to a mysql database. Once it has been added I want the app to ask permission to publish to the users stream and once authorised I want a message to be published to the users wall.

here is what ive got so far. the mysql bit is working but the post to wall is not.

<?php

require_once 'config.php';

mysql_connect("$host","$username","$password") or die(mysql_error());

mysql_select_db("$database") or die(mysql_error());


$mysql="INSERT INTO  `dhxmascomp`.`users` (`user_id` , `name` , `user_email`) VALUES (NULL, '{$_GET[name]}','{$_GET[name2]}')";


if(!mysql_query($mysql)) 
die(mysql_error());


mysql_close();

require_once 'facebook-php-sdk/src/facebook.php';

$facebook = new Facebook(array(
    'appId' => $FB_AppID,
    'secret' => $FB_AppSecret,
    'cookie' => true,));


$user = $facebook->getUser($_GET['access_token']);

try {
$publishStream = $facebook->api("/$user/feed", 'post', array(
'message' => 'test', 
'link'    => $FB_canvas_page,
'picture' => $submitPrefix. 'ibizasocial.com/plastik/images/logo_fb.png',
'name'    => 'Plastik',
'description'=> 'test'));


} catch (FacebookApiException $e) {
//echo($e);
}


?>
<html>
<body style="810px; overflow:hidden">

<div style="overflow:hidden; width:810px;">
<img src="http://ibizasocial.com/dhapp/images/DHAPP3.jpg" border="0" />


</div>
</body>
</html>
share|improve this question
just a heads up: the message variable MUST be filled with user content only, see facebook rules. – luschn Dec 6 '12 at 0:53

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.