Hey,
I'm having a problem with the development of the google ads API, when I get response from campaigns, it returns an error of failure to connect the addresses.
Error occurs when time traverse the return.
// Iterate over all rows in all pages and prints the requested field values for the
// campaign in each row.
foreach (var googleAdsRow in searchPagedResponse)
{
var row = new TableRow();
row.Cells.Add(new TableCell()
{
Text = googleAdsRow.Campaign.Id.ToString()
});
row.Cells.Add(new TableCell()
{
Text =
googleAdsRow.Campaign.Name });
row.Cells.Add(new TableCell()
{
Text = googleAdsRow.Campaign.Status.ToString()
});
CampaignTable.Rows.Add(row);
}
Status(StatusCode="Unavailable", Detail="failed to connect to all addresses", DebugException="Grpc.Core.Internal.CoreErrorDetailException: {"created":"@1651866174.649000000","description":"Failed to pick subchannel","file":"..\..\..\src\core\ext\filters\client_channel\client_channel.cc","file_line":3159,"referenced_errors":[{"created":"@1651866174.649000000","description":"failed to connect to all addresses","file":"..\..\..\src\core\lib\transport\error_utils.cc","file_line":147,"grpc_status":14}]}")