You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update api_client.py to include apple store reviews functionality (#14)
* Update api_client.py to include apple store reviews functionality
Based on same code for google map reviews, add wrapper to use apple store reviews API functionality.
* Update api_client.py
* Update api_client.py
---------
Co-authored-by: vlad-stack <[email protected]>
query (list | str): you can use direct links, and IDs of any AppStore app (e.g., https://apps.apple.com/us/app/telegram-messenger/id686449807, id686449807). Using a lists allows multiple queries (up to 250) to be sent in one request and save on network latency time.
743
+
limit (int): parameter specifies the limit of reviews to extract from one query.
744
+
sort (str): parameter specifies one of the sorting types. Available values: "mosthelpful", "mostrecent".
745
+
cutoff (int): parameter specifies the maximum timestamp value for reviews. Using the cutoff parameter overwrites sort parameter to "newest".
746
+
fields (list | str): parameter defines which fields you want to include with each item returned in the response. By default, it returns all fields.
747
+
async_request (bool): parameter defines the way you want to submit your task to Outscraper. It can be set to `False` (default) to send a task and wait until you got your results, or `True` to submit your task and retrieve the results later using a request ID with `get_request_archive`. Each response is available for `2` hours after a request has been completed.
748
+
ui (bool): parameter defines whether a task will be executed as a UI task. This is commonly used when you want to create a regular platform task with API. Using this parameter overwrites the async_request parameter to `True`.
0 commit comments