I'm trying to upload a file to via Google ruby API client. This works
media = Google::APIClient::UploadIO.new('test.jpg', 'image/jpeg')
but this does not work
media = Google::APIClient::UploadIO.new('http://www.somedomain.com/test.jpg', 'image/jpeg')
How would i upload media from a remote server such as s3?