-
If I am not mistaken, I read that Google api does not seem to work on Deta. My question is what is the best way to get 2000 rows onto a base? This will be triggered by a user request. Related question, will I be a to fetch all 2000 records in one fetch() to iterate through the items? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Beta Was this translation helpful? Give feedback.
-
I would try it, it maybe works now if google fixed their issue. by the way, the issue is that google sdks sometimes do not install correctly. you still can install their sdk locally and write a simple python/js script to load your data from base into sheets.
yes if you use pagination. base doesnt limit the number of items, rather the response size, being 1mb per page. but you can fetch as many pages as you want |
Beta Was this translation helpful? Give feedback.
I would try it, it maybe works now if google fixed their issue. by the way, the issue is that google sdks sometimes do not install correctly. you still can install their sdk locally and write a simple python/js script to load your data from base into sheets.
yes if you use pagination. base doesnt limit the number of items, rather the response size, being 1mb per page. but you can fetch as many pages as you want