Hey guys, Now I know this question has been asked similarly a lot of times but I'm really struggling here.

Its a simple thing I need to do:

I would like to post a message onto a users wall saying "I scored 8/10 on objects game" then a URL

Thats it. I don't mind if facebook needs to authenticate and then post the message. and I really don't want to have to use the full API - as I don't want to handle user login details.

Is it possible using the new Graph API and javascript.

Uber thanks guys > this'll allow me to sleep tonight.

link|improve this question

Do you need that to be "automatic" or is it ok to have a "Post to my wall" from the user ? – Soufiane Hassou May 9 '10 at 4:42
Post to my wall would be the one I'd like. I just want the user to have the option of sending it to their wall. – Glycerine May 10 '10 at 20:25
What luck - since doing it automatically tends to require more effort in fetching permissions, anyway. – Matchu May 11 '10 at 1:30
feedback

2 Answers

up vote 18 down vote accepted
+100

Note 4/16/2011: stream.publish seems to have been deprecated, There's a new way to do this: http://developers.facebook.com/docs/reference/dialogs/feed/

You can use something like this to publish to a wall, the user will need to confirm before it get sent. Don't forget that you'll need use FB.init and include the JS SDK link.

 function fb_publish() {
     FB.ui(
       {
         method: 'stream.publish',
         message: 'Message here.',
         attachment: {
           name: 'Name here',
           caption: 'Caption here.',
           description: (
             'description here'
           ),
           href: 'url here'
         },
         action_links: [
           { text: 'Code', href: 'action url here' }
         ],
         user_prompt_message: 'Personal message here'
       },
       function(response) {
         if (response && response.post_id) {
           alert('Post was published.');
         } else {
           alert('Post was not published.');
         }
       }
     );  
  }
link|improve this answer
Disclaimer: haven't done a test-run of the code, but it looks right. – Matchu May 11 '10 at 1:31
1  
I copied it from one of my working codes. The function is tested :) – Soufiane Hassou May 11 '10 at 1:45
1  
F*cking love you guys. I'm going to give it a try tonight. – Glycerine May 11 '10 at 14:53
Well - Its done. another developer was on the case without me and finished it off - Thus - You get 100 points for being the dude who gave me code. Nice one Soufiane. – Glycerine May 11 '10 at 18:20
perfect code snippet. thanks! – matt lohkamp Feb 10 '11 at 21:42
show 3 more comments
feedback

Considering that you have a proxy to make cross domain calls, you can simply do this...

In this example, YourProxyMethod takes a jQuery.ajax like hash, makes a server side post & returns the response in success/error callbacks. Any regular proxy should do.

The trick is to include app_id and access_token in the URL irself. Also, your FB app should have sufficient permissions to make this call.

YourProxyMethod({
  url : "https://graph.facebook.com/ID/feed?app_id=APP_ID&access_token=ACCESS_TOKEN",
  method : "post",
  params : {
    message : "message",
    name : "name",
    caption : "caption",
    description  : "desc"
  },
  success : function(response) {
    console.log(response);
  },
  error : function(response) {
    console.log("Error!");
    console.log(response);
  }
});
link|improve this answer
feedback

protected by Community Jul 30 '11 at 10:42

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.