Hello, Ads API Team.
using Ads api (v4.2.0) and no response.
After sending the request I didn't receive a response without any error.
When I checked it in the Google Developer Console, it showed that it responded normally.
I'm developing in a threaded environment and the API stays waiting without receiving a response.
Was there a similar case?
UserCredentials credentials = UserCredentials.newBuilder()
.setClientId(*******************)
.setClientSecret(*******************)
.setRefreshToken(*******************)
.build();
GoogleAdsClient googleAdsClient = GoogleAdsClient.newBuilder()
.setCredentials(credentials)
.setDeveloperToken(*******************)
.setLoginCustomerId(*******************
.build();
GoogleAdsServiceClient client = googleAdsClient.getLatestVersion().createGoogleAdsServiceClient();
SearchGoogleAdsRequest request = SearchGoogleAdsRequest.newBuilder()
.setCustomerId(************)
.setPageSize(PAGE_SIZE).setQuery("SELECT
campaign.id FROM campaign")
.build();
// ISSUE line
SearchPagedResponse searchPagedResponse = client.search(request);