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 facebook app and trying to publish a post to user's wall, without notyfing the user with any kind of pop-up dialog (for users have granded the publish_stream oauth permission).

I've been searching a lot, and tried many different things, used FB.ui or FB.api, but i can't get it to work properlly, i either get the pop-up notification, or nothing at all.

Following the answer here, i have this code, but it just does nothing, it just alerts "undefined" (as the post didn't get published, there is no post_id)

var publish = {
     method: 'stream.publish',
     message: 'Test Message',
     picture : 'http://www.mydomain.gr/apps/app1/img/small.png',
     link : 'http://www.mydomain.gr/apps/app1/',
     name: 'THIS IS MY APPLICATION!',
     caption: ' ',
     description: 'I just used this app and i loved it!!',
     actions : { name : 'Use me!', link : 'http://www.mydomain.gr/apps/app1/'}
   };

   FB.api('/me/feed', 'POST', publish, function(response) {  
      alert(responce.post_id)
   });

Any ideas how i can achieve it? Thanks in advance.

share|improve this question

1 Answer

up vote 4 down vote accepted

What you are trying to do is against Facebook rules!

Each message you want to post to a user wall has to be seen first by the user and approved. Read the Facebook platform policy and pay attention to Section IV paragraph 3.

share|improve this answer
Thanks for replying! It's true i hadn't read the platform policy recently, i just thought it could be done coz i've seen it in some old applications happening. thank you again ;) – CrisDeBlonde Feb 1 '12 at 16:36

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.