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 am developing a Facebook application using sinatra and Koala. I'd like to know if it's possible to publish to user's wall (a picture, not just text) using only the App Token.

I have user's permissions but still get an error:

@graph = Koala::Facebook::API.new("MYAPPTOKEN")
@graph.put_picture("http://path.to/image", {:message => "ermargherd"}, user_facebook_id)
Koala::Facebook::APIError - OAuthException: A user access token is required to request this resource.

It's pretty simple to updte user's status, but how to put a picture?

Thanks

share|improve this question
Are you sure the token is legit? Have you tested the permission you have with this user on the facebook graph explorer? – oldergod Sep 30 '12 at 2:51
@oldergod, I'm quite sure because I can update the user's status, but anything beyond that, returns me an error. – goo Sep 30 '12 at 19:08
there is different permissions for updating status and uploading pictures. developers.facebook.com/tools/… – oldergod Oct 1 '12 at 0:22
I think this is almost an answer @oldergod. – goo Nov 28 '12 at 2:23
if that fixed your problem, I could write it as an answer so you could accept it. – oldergod Nov 28 '12 at 2:26

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.