Feature Request P2
Status Update
Comments
[Deleted User] <[Deleted User]> #2
I have one question related to Google translate API. but it is not related to this issue.
When i am trying to access Google Translate API using javascript when the query string size is around 13000 characters i am getting server response error code 400. Can you please let me know what is the request size limit if any exist.
When i am trying to access Google Translate API using javascript when the query string size is around 13000 characters i am getting server response error code 400. Can you please let me know what is the request size limit if any exist.
sr...@google.com <sr...@google.com> #3
@vrames
according to Google API FAQ
The maximum size of each text to be translated is 5000 characters, not including any HTML tags.
according to Google API FAQ
The maximum size of each text to be translated is 5000 characters, not including any HTML tags.
Description
What you would like to accomplish:
Currently, the Talent Solution API is not exposing total number of open jobs. The jobs.search method returns a job count of the search results but it is limited to ~100,000 jobs, while the jobs.list method returns all the jobs that matches the input filter, but does not include a results count.
Please add a way to retrieve the total count of jobs at either of those methods or in a new method.
How this might work:
It could be added to the existing jobs.search or jobs.list methods or in a separate method.
If applicable, reasons why alternative solutions are not sufficient:
The jobs.search method returns a job count of the search results but it is limited to ~100,000 jobs, while the jobs.list method returns all the jobs that matches the input filter, but does not include a results count.
Other information (workarounds you have tried, documentation consulted, etc):
Workaround is to perform one or more calls to the jobs.list method and count the resulting list, but this is less than ideal since it requires to go through all resulting pages and further processing of the output.