Все делаю по инструкции https://developers.google.com/adwords/api/docs/
1. создал MCC 2. получил токен разработчика (не заполнял финальную форму и токен в ожидании) пока пытаюсь через тестовый аккаунт 3. создал проект https://console.developers.google.com/project под логином MCC 4. создал тестовый аккаунт 5. скачал либы дотнета 6. получил токен обновления для тестового аккаунта пытаюсь выполнить пример int PAGE_SIZE = 100; int offset = 0; // Создание селектора. Selector selector = new Selector(); selector.fields = new String[] {"Id", "Name"}; selector.ordering = new OrderBy[] {new OrderBy() {field = "Name" , sortOrder = SortOrder.ASCENDING}}; selector.paging = new Paging() {startIndex = offset, numberResults = PAGE_SIZE}; CampaignPage page = null; var user = new AdWordsUser(); CampaignService campaignService = (CampaignService)user. GetService(AdWordsService.v201502.CampaignService); try { page = campaignService.get(selector); } catch (Exception e) { Console.WriteLine("Exception: "+e.Message); } получаю исключение AuthorizationError.USER_PERMISSION_DENIED при попытке подключения через реальный аккаунт получаю исключение что токен разработчика на модерации - что и требовалось в тестовом MCC не могу подключить клиента <add key="ClientCustomerId" может в этом проблема ? или по идее этот ид должен браться из реального MCC по токену, но как там на самом деле не понимаю -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 [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]. 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/e98905c5-2366-4044-8121-2bafe437c3cb%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
