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
// Create a query that will retrieve all campaigns.
string query = @"SELECT
campaign.id,
campaign.name,
campaign.network_settings.target_content_network
FROM campaign
ORDER BY campaign.id";
try
{
// Issue a search request.
googleAdsService.SearchStream(customerId.ToString(), query,
delegate (SearchGoogleAdsStreamResponse resp)
{
foreach (GoogleAdsRow googleAdsRow in resp.Results)
{
Console.WriteLine("Campaign with ID {0} and name '{1}' was found.",
googleAdsRow.Campaign.Id, googleAdsRow.Campaign.Name);
}
rowResult = resp.Results;
}
);
}
`
the response callback on the googleAdsService.SearchStream method doesn't fire and no error is thrown.
The text was updated successfully, but these errors were encountered:
I'm trying to get all campaigns by using the below code
` GoogleAdsServiceClient googleAdsService = client.GetService(Services.V3.GoogleAdsService);
`
the response callback on the googleAdsService.SearchStream method doesn't fire and no error is thrown.
The text was updated successfully, but these errors were encountered: