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