Changes of column names in ACCOUNT_PERFORMANCE_REPORT

2015-04-03 Thread keym
Hi, I have a question about changes of column names in ACCOUNT_PERFORMANCE_REPORT. I used to use the column name Conversions to get numbers of conversions. However, I noticed that the column name Conversions changed into ConvertedClicks, and I had to change the name to get numbers of

is posible to geo traget campaign to post code of country and range in KM ?

2015-04-03 Thread Haresh Ramchandani
Hi can any one tell me how can we set the post code geo location to campaings with adwords api. i am using PHP Adwords api library. is it possible with CampaignCriterionService? thanks Haresh -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog

Re: Changes of column names in ACCOUNT_PERFORMANCE_REPORT

2015-04-03 Thread Anash P. Oommen (AdWords API Team)
Hi, This was done as part of v201502, see release notes https://developers.google.com/adwords/api/docs/reference/#v201502. Which API version are you using, though? The reporting column changes should be versioned, so unless you upgrade to the new API version, your code should work fine. The

Re: How to Get Campaign Data in C# Grid

2015-04-03 Thread Pravin Yadav
On Thursday, April 2, 2015 at 12:20:21 AM UTC+5:30, Josh Radcliff (AdWords API Team) wrote: Hi, Is it just calls against *CampaignService* that are failing, or do calls against *all* services fail? One thing to check would be to try to hit the WSDL endpoint from the host where you are

Re: is posible to geo traget campaign to post code of country and range in KM ?

2015-04-03 Thread Nadine Sundquist (AdWords API Team)
Hello Haresh, The Location targeting guide https://developers.google.com/adwords/api/docs/guides/location-targeting#geotargeting-regions provides general examples on how to target locations by region (including postal code). You will need to: - Look up the location id

Re: Adwords API retuns unknown keywords

2015-04-03 Thread Josh Radcliff (AdWords API Team)
Hi, Could you provide more information about the first screenshot, such as the API request (with sensitive information removed) that you used to retrieve that data? Also, if you could share the customer ID (xxx-xxx-) of the account, that would be helpful in our investigation. Thanks,

Re: How get CustomerId with OAuth 2.0

2015-04-03 Thread Nadine Sundquist (AdWords API Team)
Hi Marcin, Let me recap the process that you're following. It should be this: 1. Follow the OAuth2 ASP.NET code example on how to do an OAuth2 flow and capture the access and refresh token. 2. Set the access and refresh token to user.Config dynamically at runtime and call

Re: AuthorizationError.USER_PERMISSION_DENIED @ ; trigger:'null

2015-04-03 Thread Pawan Yadav
Hi Josh- I am sure this might have been asked multiple time but I am still not able to find a working solution for my problem . I am trying to test the google adwords API connectivity and my Prod account( of which Token is still in Pending status) . So i tried to use a test account to test

Lifetime of a refresh token

2015-04-03 Thread Hao Li
Hello, We are using OAuth2.0 to pull reports from Adwords. We wonder if a refresh token is always valid after it is granted. If not, in what kind of conditions a refresh token become invalid? Thanks. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and

Re: Lifetime of a refresh token

2015-04-03 Thread Nadine Sundquist (AdWords API Team)
Hi, Our OAuth 2.0 Authentication guide https://developers.google.com/adwords/api/docs/guides/authentication#access_and_refresh_token provides information on access and refresh tokens. An OAuth 2.0 refresh token does not expire. Refresh tokens are valid until the user revokes access. Regards,

Re: TrafficEstimator Mismatch Between API and UI

2015-04-03 Thread Josh Radcliff (AdWords API Team)
Hi Brad, As a starting point, I'd recommend checking out the Traffic Estimator Guide's section on mapping to the Keyword Planner https://developers.google.com/adwords/api/docs/guides/traffic-estimator-service#mapping_to_the_keyword_planner. One of the most common causes for differences is the

Re: TrafficEstimator Mismatch Between API and UI

2015-04-03 Thread Brad Ruderman
Thanks Josh- You are right! I was using the wrong method. Thanks for your help. Brad On Friday, April 3, 2015 at 1:14:02 PM UTC-7, Josh Radcliff (AdWords API Team) wrote: Hi Brad, As a starting point, I'd recommend checking out the Traffic Estimator Guide's section on mapping to the

Re: How to Get Campaign Data in C# Grid

2015-04-03 Thread Josh Radcliff (AdWords API Team)
Hi, It sounds like you may not have set up your config properly. Have you read through our wiki on App.config https://github.com/googleads/googleads-dotnet-lib/wiki/Understanding-App.config? In particular, I'd recommend the section on OAuth2 configuration values