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); -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/16fd87b5-ba98-4cdd-8089-16159209f532%40googlegroups.com.