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 been trying to post status to my facebook page through a PHP script which runs on my web server. I have succeeded in posting it via app i.e creating an app and using its app id and secret.

Here is the code snippet of it:

$pgid="############";
$token="###############################";
$this->tasks = new Facebookclass(array(
  'appId'  => '##########',
  'secret' => '##########',
  'cookie' => true,
));
$post = array('access_token' => $token, 'message' => $message);
try{
  $res = $this->tasks->api('/'.$pgid.'/feed','POST',$post);
} catch (Exception $e){
  echo $e->getMessage();
  die();
}

It's working fine and updating the status of my facebook page, but that change/update is only visible only to the admin (ie: me) and not to anyone else who views the page.

If I update status normally by FB logging then it's visible to all, but not the status uploaded via this app.

share|improve this question
hmmmm, disable Sandbox mode in your app settings...also maybe when you authorized the app you selected "only me"? (not sure if this is related but it's worth to check it) – ifaour Oct 25 '12 at 22:42
Thanks for it:) it works now also i would like to add link in that message like $message="<a href='link1'>Download on Android</a> or <a href='link2'>iPhone</a>" but if i am doing this its dumping the html in the status. Any suggestions? – Mudit Dugar Oct 25 '12 at 23:59
you are welcome. What was the issue? – ifaour Oct 26 '12 at 0:00
You cannot add html tags to your posts, but there's a link parameter that the feed connection accepts, an example can be found in my tutorial. – ifaour Oct 26 '12 at 0:05
ok can u give me a complete list of parameters allowed? and can we have two links or two images? – Mudit Dugar Oct 26 '12 at 0:19
show 1 more comment

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.