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 using Graph API along with javascript facebook sdk to make posts on users wall. The code looks like this

function graphStreamPublish(){
                showLoader(true);

                FB.api('/me/feed', 'post', 
                    { 
                        message     : "Sample Message",
                        link        : 'link url',
                        picture     : 'image url',
                        name        : 'app name',
                        description : 'Test stuff'

                }, 
                function(response) {
                    showLoader(false);

                    if (!response || response.error) {
                        alert('Error occured');
                    } else {
                        alert('Post ID: ' + response.id);
                    }
                });
            }

Can this piece of code be used to post on users timeline as well or is there something else I need to do ??

share|improve this question
this code is working right now test your javascript codes here fbrell.com just you need to add facebook js sdk & config at first – Pooya Estakhri Mar 2 '12 at 9:24

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.