これが私がスプレッドシートを作成する方法です:
DocsService client= new DocsService ("idea");
client.useSsl ();
client.setOAuthCredentials (oauthParameters, new OAuthHmacSha1Signer ());
DocumentListEntry newEntry= new com.google.gdata.data.docs.SpreadsheetEntry ();
newEntry.setTitle (new PlainTextConstruct ("GIdeaDB"));
DocumentListEntry insertedEntry= client.insert (new URL (
"https://docs.google.com/feeds/default/private/full/?xoauth_requestor_id="+ userEmail), newEntry);
今、私はそれに最初の行を書きたいと思います。
しかし、残念ながら、すべてのAPI呼び出しは、名前と値のペア(名前は作成したい見出し)を挿入するための最初の行がすでにあるという事実に基づいて継ぎ目があります。 http://code.google.com/apis/spreadsheets/data/3.0/developers_guide.html#CreatingTableRecords
最初の行を作成する方法はありますか?フィールド名を定義するもの。