即
这是可行的:
=IMPORTFEED("http://example.com/feed", "items url", FALSE, 250)
但这不是:=IMPORTFEED("http://example.com/feed", "items url", FALSE, 251)
我怎样才能绕过250件的限制呢?
发布于 2016-10-09 06:16:36
对我来说,为了绕过限制,我的提要有一个起始索引。
例如
http://www.spoilertv.com/feeds/posts/default/-/Reviews?start-index=1
然后我可以退还250个项目,即项目1到251。
如果我想要更多,我做了另一个IMPORTFEED,但这次我使用这个链接
http://www.spoilertv.com/feeds/posts/default/-/Reviews?start-index=251
对所需数量重复此操作
例如
http://www.spoilertv.com/feeds/posts/default/-/Reviews?start-index=501
http://www.spoilertv.com/feeds/posts/default/-/Reviews?start-index=751
http://www.spoilertv.com/feeds/posts/default/-/Reviews?start-index=1001
....
....
http://www.spoilertv.com/feeds/posts/default/-/Reviews?start-index=10001https://stackoverflow.com/questions/36188987
复制相似问题