Querying to search_term_view successfully return response.
This is how the response is iterated:
ServerStream<SearchGoogleAdsStreamResponse> stream = ....;
for (SearchGoogleAdsStreamResponse response : stream) {
for (GoogleAdsRow googleAdsRow : response.getResultsList()) {
// ...
}
}
The problem is that it doesn't work for shopping campaigns. For shopping campaigns, I could retrieve the ServerStream object but when I try to iterate the stream it doesn't do anything. Though there is no exception.
Any help on how to work with shopping campaigns?