Can I tweet a photo using twitter on rails?
I know that you can do plain text like below
Twitter.update ("I'm tweeting with @gem!")
But how to include the URL of the image to be uploaded?
thanks
Assuming you're talking about twitter sferik twitter, i think this method here might be useful. http://rdoc.info/gems/twitter/Twitter/API/Tweets#update_with_media-instance_method Basically you want to use the update_with_media method. More information from Twitter can be found on their website https://dev.twitter.com/docs/api/1/post/statuses/update_with_media . Hope this helps!