I am doing a rails project that involved using Koala gem to call facebook graph API. Is it possible to post to facebook wall with picture/video attachment (not picture link) via graph API?
I'm able to to put picture using this command
graph = Koala::Facebook::API.new(access_token)
graph.put_picture(params["picture_path"]) #where params["picture_path] is ActionDispatch::Http::UploadedFile object
but this only upload to album
I failed doing this:
graph = Koala::Facebook::API.new(access_token)
graph.put_wall_post("hello", {"picture" => params["picture_path"]} ) #where params["picture_path] is ActionDispatch::Http::UploadedFile object
Error:
undefined method `local_path' for #<ActionDispatch::Http::UploadedFile:0x00000106100a70>
Help ?