I got the same issue (UNEXPECTED_INTERNAL_API_ERROR):

public void Run(AdWordsUser user)
        {
            var service = 
(IFeedMappingService)user.GetService(AdWordsService.v201302.FeedMappingService);
 
            var selector = new Selector()
            {
                fields = new[] { "FeedId", "AttributeFieldMappings" },
                paging = new Paging { numberResults = 1 }
            };
 
            var result = service.get(selector);
 
 
        }


but if i make a call with additional field "PlaceholderType"

public void Run(AdWordsUser user)
        {
            var service = 
(IFeedMappingService)user.GetService(AdWordsService.v201302.FeedMappingService);
 
            var selector = new Selector()
            {
                fields = new[] { "FeedId", "AttributeFieldMappings", 
"PlaceholderType" },
                paging = new Paging { numberResults = 1 }
            };
 
            var result = service.get(selector);
 
 
        }


it works



On Tuesday, May 14, 2013 6:09:55 PM UTC+3, [email protected] wrote:
>
> Dear Adwords API team
>
> We are implementing support for upgraded sitelinks using the feed services 
> of the adwords API.
>
> When we do a request to the feedMappingService we currently get 
> an UNEXPECTED_INTERNAL_API_ERROR response.
>
> In the attachment you can find the SOAP request and response.
>
>
> Could you please look into this? Thank you!
>
>
> Kind regards,
>
> Jaap-Jan Frans
> bGenius
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
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 [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to