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.

There are a lot of questions on SO about this, but not exactly what I am looking for.

In my case, users can log in through Facebook/Twitter/other. And they can upload an image. Once they upload an image, two things will happen. The FB user's status is updated with an attachment to the link. And on the FB App's wall, a status update is also posted but by the application itself and not by the user. I am having trouble with this last part. So the user does not have to be logged in through Facebook for this latter to occur.

My code:

$facebook = new Facebook($config);

$attachment = array(
'message' => 'A user just posted a new item',
'name' => $tag,
'caption' => $desc,
'link' =>  WEBURL,
'description' => '',
'picture' => $img,
'actions' => array(array('name' => 'Go to item',
                  'link' => WEBURL))
);


$facebook->api('/'.PAGEID.'/feed', 'POST', $attachment);
share|improve this question

1 Answer

An application's wall behaves exactly like a page's wall or a user's wall. Lookup the documentation for those.

share|improve this answer
I know it does, and I have looked up the documentation. The only thing that I am missing is how one can post as the app's owner to the app's wall. – dandoen Sep 5 '11 at 14:53

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.