In the facebook api documentation about “How-To: Upload Multiple User Generated Photos”( https://developers.facebook.com/docs/technical-guides/opengraph/upload_multiple_user_generated_photos/#step1 ), it mentioned "Post Multiple User Generated Photos With A Single Action"
https://graph.facebook.com/me/nyccookbook:cook?
recipe=http://www.yourdomain.com/pizza.html&
image[0][url]=http://www.yourdomain.com/images/my_camera_pizza_pic.jpg&
image[0][user_generated]=true&
image[1][url]=http://www.yourdomain.com/images/my_camera_soda_pic_2.jpg&
image[1][user_generated]=true&
access_token=YOUR_ACCESS_TOKEN
With that, I am still confused about how I can achieve it in Rails. Searching through the Facebook API documentation but can't find any explicit examples. Any suggestions or examples to help me achieve this?
Thanks