【发布时间】:2011-06-20 06:39:03
【问题描述】:
我想在我自己的页面中显示 Google Doc 的内容。
我可以通过使用获取所有文档的列表
http://code.google.com/apis/documents/docs/2.0/developers_guide_dotnet.html
DocumentsService service = new DocumentsService("exampleCo-exampleApp-1");
service.setUserCredentials("jo@gmail.com", "mypassword");
DocumentsListQuery query = new DocumentsListQuery();
DocumentsFeed feed = service.Query(query);
foreach (DocumentEntry entry in feed.Entries)
{
Console.WriteLine(entry.Title.Text);
}
如何在我的页面中显示 Document 的内容?
【问题讨论】:
-
如何在我的应用程序中为“DocumentsService”添加 dll 或任何内容??
标签: c# asp.net google-api