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.

Is it possible to publish any text to user timeline without dialog? I know how to do that with feed dialog, but I need only post some text.

share|improve this question
You can use Graph API to post without feed dialog – R.A Apr 25 '12 at 6:33

1 Answer

Hi you can do something like

FB.api(
     FB.api('/me/feed', 'post', { body: body, message: 'My message is ...' }, function(response) {
        if (!response || response.error) {
            alert(response);
       } else {
            alert(response));

} }); }

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.