0

我想下载我的 Google 协作平台网站中网页的 URL 列表。我正在使用 Python API 来执行此操作。它似乎比我预期的要慢,所以我认为它实际上是下载每个条目的全部内容,而不仅仅是元数据。有没有办法只下载元数据?我的代码如下:

import gdata.sites.client

client = gdata.sites.client.SitesClient(site='mysite', domain='mydomain.com')
client.ClientLogin('foo@bar.com', 'password', 'test')
feed = client.GetContentFeed()
for entry in feed.entry:
    print entry.GetAlternateLink().href
4

1 回答 1

1

最接近的近似值是

https://sites.google.com/site/(your site name)/system/feeds/sitemap

不幸的是,这个 API 不允许fields像一些较新的 Google API 那样使用。

于 2012-10-02T15:45:43.457 回答