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 want to post messages, links, etc. into facebook wall without logging in.

For example, I have a blog site, when I submit/post a blog, the url for that blog will automatically post on facebook.

Is this possible?

share|improve this question
You should specify some language, since Facebook has got many SDKs for different languages. – Julian Bayardo Spadafora Aug 3 '11 at 1:41

3 Answers

This is indeed possible, as long as you have a valid authorization token to use with Facebook (this means, it is not possible if the user hasn't authorized your application). For this, though, you require "offline_access" within the token's permissions. More about the topic on Facebook's documentation.

Please note that this behavior is not exactly... uhm, encouraged by Facebook, thus there isn't much documentation on how to do it. You should also remember that you must have a way to store your access token, since requesting it again would require user input, as well as some kind of way to get one again, for it expires after some time (it is long-lived, though).

share|improve this answer
A practical example can be found at stackoverflow.com/questions/1059640/… – Julian Bayardo Spadafora Aug 3 '11 at 1:40

Eventhough great answer given already I would share this post: http://eagerfish.eu/using-facebook-off-line-access-to-post-on-users-wall/. It is short explanation how to post on your/others wall without signing in. It uses offline_access permission pointed out earlier.

share|improve this answer

Both answers are a bit misleading!
You don't need the offline_access permission to post content to Facebook. Only the publish_stream permission is needed.

Even if no user login is required. Once the user authorize your app with the publish_stream permission, you can start posting content on his behalf without the need of him to login!

I described this here. I'll expand the post to provide a more complete code soon.

share|improve this answer
1  
He asks for no need to authenticate. This means that unless he's previously logged into Facebook, he would be asked for authentication. That being said, having offline_access permission is more than necessary, along with publish_stream (which I missed). – Julian Bayardo Spadafora Aug 3 '11 at 18:26
1  
as I said, once the user authorize your app with the publish stream permission. You can post without him being online! – ifaour Aug 3 '11 at 22:18

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.