I am trying to use the gdata gem to upload files to my Google Docs account. Here is what I have come up so far:
require "rubygems"
require "gdata"
require "mimer"
file = File.new "/Users/paulengel/Desktop/ps.pdf"
doc_list = GData::Client::DocList.new :version => 3
doc_list.clientlogin "myemail", "mypassword"
create_session_url = doc_list.get("https://docs.google.com/feeds/default/private/full").to_xml.elements["link[@rel='http://schemas.google.com/g/2005#resumable-create-media']"].attributes["href"]
upload_location = doc_list.post(create_session_url, nil).headers["location"]
doc_list.post_file upload_location, file.path, Mimer.identify(file.path).mime_type
I get this error:
GData::Client::BadRequestError: request error 400: <errors xmlns='http://schemas.google.com/g/2005'><error><domain>GData</domain><code>ParseException</code><internalReason>Premature end of file.</internalReason></error></errors>
Unfortunately, the Ruby coding documentation for Google Documents API v3 is not that extensive.
After a couple more attempts, I have managed to upload a small ZIP file to my Google Docs account. But it's VERY ACKWARD and still fails when uploading larger files.
require "rubygems"
require "gdata"
require "mimer"
file = File.new "/Users/paulengel/Desktop/am.zip"
doc_list = GData::Client::DocList.new :version => 3
doc_list.clientlogin "myemail", "mypassword"
create_session_url = doc_list.get("https://docs.google.com/feeds/default/private/full").to_xml.elements["link[@rel='http://schemas.google.com/g/2005#resumable-create-media']"].attributes["href"]
doc_list.headers["X-Upload-Content-Length"] = file.stat.size
upload_location = doc_list.post_file(create_session_url, file.path, Mimer.identify(file.path).mime_type).headers["location"]
doc_list.post_file upload_location, file.path, Mimer.identify(file.path).mime_type
Has anyone managed to upload files using Google Documents API v3 with Ruby the correct way?
Thanks in advance, Paul.