Hello,

We did an implementation for the TargetingIdeaService using the C# client 
library about a month ago to retrieve the search volume for a set of 
keywords.
Everything worked fine until about 2 weeks ago when we started receiving 
exceptions all the time.

The 2 exceptions which we get are:
1. RateExceededError.RATE_EXCEEDED although we are not doing any requests
2. When a request finally goes through we 
get TargetingIdeaError.INVALID_SEARCH_PARAMETERS, but the request we are 
making was working fine before.

[TargetingIdeaError.INVALID_SEARCH_PARAMETERS @ 
selector.searchParameters.searchParameters[0]; 
trigger:'LocationSearchParameter', 

TargetingIdeaError.INVALID_SEARCH_PARAMETERS @ 
selector.searchParameters.searchParameters[1]; 
trigger:'RelatedToQuerySearchParameter', 

TargetingIdeaError.INVALID_SEARCH_PARAMETERS @ 
selector.searchParameters.searchParameters[2]; 
trigger:'LanguageSearchParameter', 

TargetingIdeaError.INVALID_SEARCH_PARAMETERS @ 
selector.searchParameters.searchParameters[3]; 
trigger:'NetworkSearchParameter']

We are doing a request to the TargetingIdeaService using the 
following TargetingIdeaSelector below.
Any idea why are we getting only errors?

Thank you,
Andrei.

TargetingIdeaSelector selector = new TargetingIdeaSelector
{
    requestType = RequestType.STATS,
    ideaType = IdeaType.KEYWORD,
    requestedAttributeTypes = new[]
    {
        AttributeType.KEYWORD_TEXT,
        AttributeType.SEARCH_VOLUME,
        AttributeType.TARGETED_MONTHLY_SEARCHES
    },
    searchParameters = new SearchParameter[]
    {
        new RelatedToQuerySearchParameter
        {
            queries = new [] {"keyword1", "keyword2" }
        },
        new LocationSearchParameter
        {
            locations = new[]
            {
                new Location
                {
                    id = 2528
                }
            }
        },
        new LanguageSearchParameter
        {
            languages = new[]
            {
                new Language
                {
                    id = 1010
                }
            }
        },
        new NetworkSearchParameter
        {
            networkSetting = new NetworkSetting
            {
                targetGoogleSearch = true,
                targetSearchNetwork = false,
                targetContentNetwork = false,
                targetPartnerSearchNetwork = false
            }
        }
    },
    paging = new Paging
    {
        startIndex = 0,
        numberResults = 1000
    }
};



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/4c4c5b17-05bb-4af5-a1f0-73b53db95d65%40googlegroups.com.

Reply via email to