Google Spreadsheet api returning only 500 results - google-sheets-api

While querying https://spreadsheets.google.com/feeds/spreadsheets/private/full?v=3.0 i'm only ever able to get 500 results back. I have tried passing start-index and max-results but still my list is truncated to 500. How can i get all my spreadsheets?
https://spreadsheets.google.com/feeds/spreadsheets/private/full?start-index=1&max-results=1000
I've also tried max-results of 100 and using the "link rel='next'" to page, but still hitting a hard stop at 500. Is this a limit?

Related

Apigee Integration: How to use listEntitiesPageSize parameter in conjunction with the listEntitiesPageToken parameter o navigate through the pages

Good day everyone,
we are trying to have through the use of the integrations of the Apigee service of google all the rows in a bigquery table that have a certain value in a field.
this operation is quite easy to do, but when we have more than 200 lines as a result, problems arise.
The problem is that using the integration to connect to BigQuery I am not returning any listEntitiesPageToken value and not even any listEntitiesNextPageToken value
so i can't figure out how i can go about navigating the result pages
Has anyone had the same problem? What do you suggest?
In the tutorial: "https://cloud.google.com/apigee/docs/api-platform/integration/connectors-task#configure-the-connectors-task" is write : "For example, if you are expecting 1000 records in your result set, you can set the listEntitiesPageSize to 100. So when the Connectors task runs for the first time, it returns the first 100 records, the next 100 records in the second run and so on."
And there is a tip: "Use the listEntitiesPageSize parameter in conjunction with the listEntitiesPageToken parameter to navigate through the pages."
I used the tutorial to understand how to use the task for loop and I understood that I should create a "subintegration" which must be called by a "main integration" for each element present in a list / array.
But what what can i do since these tokens are empty?

GMail API search results using 'after' not returning full results

I'm having a bit of trouble with a GMail API implementation. I'm running a query that is returning only a partial data set of emails. (This is the first time that I am retrieving emails for this account, so I want to retrieve some deeper historic records as a base, before moving forward with a daily increment retrieval.)
I am using the 'after' operator, and using the Unix Epoch seconds as the value.
When I enter the same "after:" search into the Search bar on the Google website for this account, I get 598 emails (for 60 days back), and 292 emails (for 30 days back). When I use the API, I only get 103 (and this is after letting it paginate over all the results; the initial 'page' is only 100 email IDs; the 2nd Page then has 3.)
Here are a couple of the query URLs that I am hitting:
https://content.googleapis.com/gmail/v1/users/me/messages?q=after%3A1619045685
https://content.googleapis.com/gmail/v1/users/me/messages?q=after%3A1616453916
Any ideas? Is there an internal limit that I'm hitting? Is there some setting that I haven't set?
Thanks.

Can't analyzeload test results in visual studio 2013

what does that count field(that is with Avg. page time filed) in the load test result in page results section represents and what is its relation with Avg Page time .. I can't understand that what does that count shows as every time i run the test it shows the different count figures so what exactly this count is representing here?? i am using visual studio 2013 ultimate
I am new to load testing so any help would be appreciated
Thanks..
The count is the number of times that page was requested - by any user - during the test.
Your test will have requested a particular page many times. The response time for each request for that page is saved in the test result set. How would you tell someone what the response time for that page is?
You could provide a list of each and every response time, but this would be hard to read. This is where statistics comes in handy - it's a language for summarising large sets of data.
You can condense the long list of values to a single value by stating an average. To give a better picture of your result set you could also say how big the list of response times is by stating the count.

Google Web Search API returns only the first 100 result set

Is there a way to search and retrieve all results for a particular query in Google? I want to use Custom Search API, but the starting index of the result set can be 99 at most (http://code.google.com/apis/customsearch/v1/using_rest.html) Which means I can retrieve only the first 100 items. In my case, there are around 4000 items in the result set.
Thanks.
You can retrieve about 1000 results: 100 pages with 10 results each. See: http://code.google.com/apis/customsearch/v1/using_rest.html#query-params
It seems as if you can't go beyond that, though.
UPDATE: I stand corrected. It's only 100.
BTW - The new Google API can return more than 10 results per page, limited by 20 results per page, using num=20
http://www.google.com/cse/docs/resultsxml.html

How can I use the Twitter API to get tweets for a specific user and timeframe?

I've been doing some research into using the Twitter API, and I'm not sure if I'm understanding it correctly. I want to get tweets from a specific user for a specific time-frame. From what I can tell, using the search function to specify a date range doesn't work because only the last 7 days are kept. I could just get the tweets and work out the date range with JavaScript, but the documentation states the the max you can get is 200 tweets, so if the tweets from the date range I want aren't in the last 200 I can't do it.
Is there anyway I can do this?
You can use the page=n URL argument to go back through the previous pages of 200 status updates.
as described here:
http://dev.twitter.com/doc/get/statuses/user_timeline