Java - Google API - Publish a document
问题 I have a problem uploading information using the Google Document API. The task is to upload a document, then publish it right after the upload. The first part I have solved, get a DocsService client, authenticate myself with client.setUserCredentials(userName, password) method, and then upload the content with client.insert(URL, newDocument) . At this point the document appears in my Google folder. My problem is I can't figure out how too publish it. I tried to emulate the POST method (what