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.

Hi how can i simply post something to the users wall when hes connected ?

I tried this :

      <div id="fb-root"></div>
        <script src="//connect.facebook.net/en_US/all.js"></script>
          <script  type="text/javascript"> 

            FB.init({
              appId      : '35455XXXX46207', // App ID
              status     : true, // check login status
              cookie     : true, // enable cookies to allow the server to access the session
              xfbml      : true  // parse XFBML
            });


var publish = {
  method: 'feed',
  message: 'getting educated about Facebook Connect',
  name: 'Connect',
  caption: 'The Facebook Connect JavaScript SDK',
  description: (
      'A small JavaScript library that allows you to harness ' +
      'the power of Facebook, bringing the user\'s identity, ' +
      'social graph and distribution power to your site.'
  ),
  link: 'http://www.fbrell.com/',
  picture: 'http://www.fbrell.com/f8.jpg',
  actions: [
    { name: 'fbrell', link: 'http://www.fbrell.com/' }
  ],
  user_message_prompt: 'Share your thoughts about RELL'
};

FB.ui(publish, Log.info.bind('feed callback'));
</script>

This open a facebook popup, but i want to do this directly with some code .. (like spotify do)

What is the issue ? (Ive got the ext_perms for that)

Thanks

share|improve this question
1  
"Can't make this work too" is not an issue description. You want us to make your work for you? – zerkms May 3 '12 at 1:42
No, i just cant find any way to post on the users wall.. :( I just want some help to start with – Anthony May 3 '12 at 1:50
the code above looks good – zerkms May 3 '12 at 1:57
FB is undefined in my case dunno why :( – Anthony May 3 '12 at 2:00
1  
Example: fbrell.com/fb.ui/feed – Igy May 3 '12 at 3:40
show 10 more comments

1 Answer

Spotify uses the Open Graph.

Joe Bloggs {action}'d an {object} on {app}

so Joe Bloggs {'listened to'} a {'song name and title'} on {'Spotify'}

you can configure what these are, and you need to get those permissions when accepting the app.

Go to your app in FB developers > App > Edit App > Open Graph.

That's how you can do it. As for an automatic share, I am unsure, I'm looking for it myself, but suspect it's not doable. Imagine the ability for abuse. But it sounds like open Graph will do what you want.

share|improve this answer

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.