RE: Authentication problem in Google Ads API

2021-03-01 Thread Google Ads API Forum Advisor Prod
Hi, I recommend double checking if you followed all the steps that are mentioned in the guide: https://developers.google.com/google-ads/api/docs/oauth/cloud-project I suggest enabling the Google Ads API using the incognito mode of Google Chrome. Thanks, Lakshmi Prathipati Google Ads API Team r

Authentication problem in Google Ads API

2021-02-28 Thread Mohammad Ahmad
I have previously been using the googleads-dotnet-lib library to make calls to google ads without issue. After switching to a new dotnet core project I use my previous credentials set up for the googleads-dotnet-lib library the google-ads-dotnet library throws the following error. 'Google.Ads

Re: Authentication problem

2018-10-21 Thread honnponn
Hi, > flow = google_auth_oauthlib.flow.Flow.from_client_secrets_file( > 'client_secret.json', scope=[oauth2.GetAPIScope('adwords')]) I got the exactly same error. scope=must bescopes=. s is required. Jun 2018年8月28日火曜日 5時54分08秒 UTC+9 sshaw@gmail.com: > > I'm trying to get star

Re: Authentication problem

2018-08-27 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi, When setting up your OAuth2 credentials , we recommend the installed application flow

Authentication problem

2018-08-27 Thread sshaw . losasso
I'm trying to get started with adwords api but am unable to authenticate. I am using python. When I run: flow = google_auth_oauthlib.flow.Flow.from_client_secrets_file( 'client_secret.json', scope=[oauth2.GetAPIScope('adwords')]) flow.redirect_uri = 'https://www.example.com/oauth2callback'

Re: Authentication problem with new app

2013-11-19 Thread Anash P. Oommen (AdWords API Team)
Hi, Could you check your Google API console project to see if you have set the email address for your client? You could find this on the consent screen tab of your client. That should fix the invalid_client issue. Cheers, Anash On Wednesday, November 13, 2013 6:30:01 AM UTC-5, my...@smallbize

Re: Authentication problem with new app

2013-11-13 Thread myapi
Hi Anash I am facing same issue, i have created Test MCC account and creates ClientID and secret key as mentioned in documentation. But its giving below error Log in to your AdWords account and open the following URL: https://accounts.google.com/o/oauth2/auth?response_type=code&client_id=*

Re: Authentication problem with new app

2013-10-01 Thread Filip Holmberg
I did create a 'Installed App' but could not get it to work and receive the described error. I did get a refresh token now when I added a Web app and used that id/secret pair. - Filip On Tuesday, 1 October 2013 12:36:38 UTC+3, Anash P. Oommen (AdWords API Team) wrote: > > Hi Filip, > > Looks l

Re: Authentication problem with new app

2013-10-01 Thread Anash P. Oommen (AdWords API Team)
Hi Filip, Looks like you created a "Web application" on the Google API Console. For installed application, there's an installed application option on the Google API Console, and urn:ietf:wg:oauth:2.0:oob is a registered callback url in that project. Cheers, Anash P. Oommen AdWords API Advisor

Authentication problem with new app

2013-10-01 Thread Filip Holmberg
We are building a adwords tool but we're struggling with the authentication. Our tool is just for internal use and therefore should be considered as a "installed app" I assume. So the logic should be as follows: authenticate with OAuth2.0 once and then just refresh the authentication as the ap