Search code examples
rubyfacebookruby-on-rails-3facebook-graph-apifacebook-wall

Rails: How to post on my main facebook page through API?


I have the following permissions:

create_note, email, offline_access, photo_upload, publish_stream, read_stream, share_item, status_update, manage_notifications, read_friendlists, video_upload, user_relationships, user_status, user_photos

I can do post on the user timeline (www.facebook.com/username) but I can't see how to post on the user's wall (www.facebook.com)

To post on the user timeline, I use a code something like:

if I need to attach an image to the post

client.put_connections("me", "feed", attachments, attachments)

and

if I don't need to attach an image to the post

client.put_connections("me", "links", attachments, attachments)

both are working nice, but none of them really publish the message on the wall (www.facebook.com as a logged in user)

So, I just wondering if it is a normal behaviour or am I just missing something?

Thank you.


Solution

  • The same behavior I can see for other users those are sharing update from API. I think it's normal and we need not to worry about it.

    As per me : We can't not say this is required because getting our own feed in 'News Feed' section is not beneficial at all.