1
我們正試圖添加一個新的電子表格到Google文檔。創建在谷歌文檔新的電子表格
我們使用的.Net 4.0.5和2.2.0 GData.Documents
最近,我們改變了我們的驗證方法到OAuth2,我們可以執行類似的查詢表格等動作
我們的範圍是https:// spreadsheets.google.com/feeds https:// docs.google.com/feeds https:// www.googleapis.com/auth/drive
我們創建一個電子表格舊的代碼是:
DocumentsService docService = new DocumentsService("Application");
DocumentEntry entry = new DocumentEntry();
docService.setUserCredentials("[email protected]", "PASSWORD");
entry.Title.Text = "AddingNewSpreadsheet";
entry.Categories.Add(DocumentEntry.SPREADSHEET_CATEGORY);
DocumentEntry newEntry = service.Insert(DocumentsListQuery.documentsBaseUri, entry);
我們試圖根據新authe更改代碼但是我們的嘗試都沒有成功(400個錯誤的請求)。