gpt4 book ai didi

c# - Google API 获取 Document/SpreadSheet 的内容

转载 作者:行者123 更新时间:2023-11-30 18:04:11 25 4
gpt4 key购买 nike

我想在我自己的页面中显示 Google 文档的内容。

我可以通过使用获取所有文档的列表

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的内容?

最佳答案

您可以通过以下代码获取内容。

 string content = string.Empty;
string ACLS=string.Empty;
foreach (DocumentEntry entry in feed.Entries)
{

if (entry.IsDocument)
{
var stream = client.Query(new Uri(entry.Content.Src.ToString()));
var reader = new StreamReader(stream);
content = reader.ReadToEnd();
}
}

关于c# - Google API 获取 Document/SpreadSheet 的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6407640/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com