I want to know if google my business api returns ALL reviews in each call or it might not return some of them if the number of reviews are a lot?
Using this link
(https://developers.google.com/my-business/reference/rest/v4/accounts.locations.reviews/list) , my code is based on the code provided here (https://developers.google.com/my-business/content/review-data#list_all_reviews). The account I am listing its reviews has more than 83000 reviews for its all locations and once I execute the code it might return about 81000 reviews and the second time 2 or 3 thousands more and another time 75000 reviews. Has anyone encountered something similar?
How accurate Google My Business api returns the Reviews for all locations of an account?
1k Views Asked by Shila Mosammami At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in REVIEW
- Apple Beta Review Process
- How to interpret "time" in google places reviews array
- Approval of iOS app with mobile number registration
- Interpreting nm output after rejected app
- Code review, C++, Anagram method
- Magento Terms and conditions checkbox not showing on checkout page review section
- facebook app review : review on test url?
- Facebook App Page not found
- Schema Ratings/Review Count
- iOS: Uploading App to App Store from beta test flight app
- SKStoreReviewController requestReview() if user rated the app will system never prompt him for rate us?
- Customizing woocommerce reviews pagination query
- How to remove reverted file from swarm review
- Google developers API 2 access
- Add photos using bazaarvoice sdk
Related Questions in GOOGLE-MY-BUSINESS-API
- Unable to get special opening hours from Google Places API
- Finding CID and LRD of a business page on Google
- Can't find Google place id
- Getting 403 error when accessing Google My Business API through Service Account
- Google My Business API location list missing locations
- Google My Business: How to generate access token without user interaction
- How to post localPost for topicType OFFER?
- How to get "Queries used to find your business" from GMB PHP API
- What is the maven dependency for Google My Business V4 API in order to read reviews?
- How to resolve the error code 503 and 429 while reading all locations of all accounts using Google My Business Information API in Java
- is Web hook for google review?
- verificationTokens.generate method for Google Business Profiles throws 404
- How to Get Reviews from Google Business API Using Python
- Google API TimeStamp protocol
- Missing Google Cloud Service Account by Google My Business API?
Related Questions in GOOGLE-REVIEWS
- Build an API for google review
- Google In-App Review - Android native Not working
- I am currently fetching the Google Reviews for my business and dispalying on my website using the Google Places API. Can I sort by most recent?
- How do I access Google Playstore API to get reviews of our app using Python script?
- Google Play Store Reviews API -- next page token not returned from 3rd request when retrieving reviews
- how do you use the google review Gatsby plugin?
- How To Embed Google Reviews Into HTML or PHP Using Google Places API
- Recover review list from Google My Business API
- Verify Google pub/sub android payment notification server side C# / ASP.NET MVC
- How accurate Google My Business api returns the Reviews for all locations of an account?
- How to get Google account data (project, place and all place reviews) using OAuth2 Playground while PERMISSION DENIED error
- Google JSON Review Snippet not validating
- Can we embed our "Google my business reviews" inside our SharePoint modern page
- Customize CSS in Wordpress plugin Widgets für Google Reviews from Trustindex.io
- Google reviews from place ID
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This is a known bug for locations with many reviews, the only workaround that exists is already close what you are describing: iterate through the reviews multiple times and aggregate all distinct reviews.