Hi,

I posted this question earlier today but I never got a proper confirmation 
that my question was actually submitted so here goes again.

When calling getBulkKeywordIdeas for the TargetingIdeaService I keep 
getting this error:


   - InternalApiError.UNEXPECTED_INTERNAL_API_ERROR
   

I even removed required fields from the selector to see if I'd get a new 
error but I keep constantly getting this error. Here's a sample of the code 
I've been testing on and I've highlighted where the issue is:


            string[] Seed = new string[1];
            Seed[0] = "blue suede shoes";

            string[] urls = new string[1];
            urls[0] = "www.payless.com";
         
            TargetingIdeaService.TargetingIdeaSelector selector = new 
TargetingIdeaSelector();
            TargetingIdeaService.TargetingIdeaPage tip;

            // URL
            RelatedToUrlSearchParameter relatedtoUrlSearchParameter = new 
RelatedToUrlSearchParameter();
            relatedtoUrlSearchParameter.urls = urls;

            // Keywords
            RelatedToQuerySearchParameter relatedToQuerySearchParameter = 
new RelatedToQuerySearchParameter();
            relatedToQuerySearchParameter.queries = Seed;
       
            // selector
            selector.requestType = RequestType.IDEAS;
            selector.ideaType = IdeaType.KEYWORD;
            selector.requestedAttributeTypes = new AttributeType[] { 
AttributeType.KEYWORD_TEXT, AttributeType.SEARCH_VOLUME, 
AttributeType.AVERAGE_CPC, AttributeType.COMPETITION};
            selector.searchParameters = new SearchParameter[] { 
relatedToQuerySearchParameter, relatedtoUrlSearchParameter };

            // Paging
            TargetingIdeaService.Paging paging = new 
TargetingIdeaService.Paging();
            paging.startIndex = 0;
            paging.numberResults = Seed.Length; // Max 800
            selector.paging = paging;
            
            try
            {
                using (ocs(wsrTargetingIdeaItem.InnerChannel)) 
wsrTargetingIdeaItem.getBulkKeywordIdeas(shTargetingIdeaItem, selector, out 
tip); // shTargetingIdeaItem is the Soap Header

                if (tip != null && tip.entries != null)
                {        
                }
            }
            catch (Exception e)
            {  }

Do you know what's going on here?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2d1489f0-a104-4cca-bd09-74b55475cd75%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to