Hello All! I am trying to implement `Google Play` ...
# connector-development
m
Hello All! I am trying to implement
Google Play
connector using
HttpStream
class. I need to get app feedbacks by multiple langugages and countries. Should I make new
HttpStream
for each pair - language and country or I can make multiple HTTP-request by single
HttpStrem
?`
o
loading...
o
loading...
a
Hi @Mikhail Masyagin I think you should have a single http stream for feedbacks. It really depends of the source API, but the rule of thumb is : 1 API endpoint = 1 Airbyte stream. If you're using this API, if the
translationLanguage
is a required parameter I would leverage the
stream_slices
function to return one slice per language and change the params in the
request_params
function.
m
No, I'm using API like in
google-play-scrapper
. It uses direct request to Google Play website.