Re: How to get refresh token in Visual .NET

2016-09-30 Thread 'anash' via AdWords API Forum
Hi Javier, If you need to implement a website where users have to login, then you can take a look at https://github.com/googleads/googleads-dotnet-lib/tree/master/examples/AdWords/CSharp/OAuth for an ASP.NET example that does barebones flow. It stores and restores creds from the Session, but

Re: How to get refresh token in Visual .NET

2016-09-30 Thread Zweitze
If you develop batch software: Download the client library sources. In it is a project called OAuth2TokenGenerator (or something like that). It generates an OAuth2 refreshtoken for the Application flow, which is what you want in batch software. OAuth2TokenGenerator asks for ClientId and ClientS

Re: How to get refresh token in Visual .NET

2016-09-29 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Javier, Depending on type of authentication flow used in your application, you can follow the articles provided here to generate a refresh token. Once you have populated your configuration file, the client library refreshes exp

How to get refresh token in Visual .NET

2016-09-29 Thread adwordsgeo
Hello everyone: I'm starting with the AdWords API from Visual .NET and have trouble getting the OAuth2RefreshToken. I have the rest of the keys but I lack the OAuth2RefreshToken. On the other hand, I do not know if I get another refresh token during the execution of the application. If anyon