Search code examples
c#asp.net.netgoogle-api

Google AdWords library doesn't create an access token


I'm trying to make a targetingIdeaService API call to Google AdWords. This is my code so far:

[HttpGet]
public IEnumerable<string> Get()
{
    var user = new AdWordsUser();

    using (TargetingIdeaService targetingIdeaService = (TargetingIdeaService)user.GetService(AdWordsService.v201802.TargetingIdeaService))
    {
        // Create selector.
        TargetingIdeaSelector selector = new TargetingIdeaSelector();
        selector.requestType = RequestType.IDEAS;
        selector.ideaType = IdeaType.KEYWORD;
        selector.requestedAttributeTypes = new AttributeType[] {
            AttributeType.KEYWORD_TEXT,
            AttributeType.SEARCH_VOLUME,
            AttributeType.AVERAGE_CPC,
            AttributeType.COMPETITION,
            AttributeType.CATEGORY_PRODUCTS_AND_SERVICES
        };

        // Set selector paging (required for targeting idea service).
        var paging = Paging.Default;
        // Create related to query search parameter.
        var relatedToQuerySearchParameter =
            new RelatedToQuerySearchParameter
            { queries = new String[] { "bakery", "pastries", "birthday cake" } };
        var searchParameters = new List<SearchParameter> { relatedToQuerySearchParameter };

        var page = new TargetingIdeaPage();
        page = targetingIdeaService.get(selector);
        return new string[] { "value1", "value2" };
    }
}

It looks ok, compiles at last, and so on, but then I went into debug mode. And I saw this:

enter image description here

So as you can see, the variable doesn't have the access token. The other data comes from app.config file.

I am quite certain the keys passed in are correct.

Then the code throws the famous invalid_grand error. In my case, I believe that's because the access token is not being generated. I'm new to AdWords and ASP.NET, so I probably missed something, but I have no idea what.

I used the docs, Code Structure instructions, and code examples to put it all together.


Solution

  • I had my configuration wrong. I had to recreate all the credentials using incognito window. If you have any issues just open a thread here: https://groups.google.com/forum/#!forum/adwords-api