Ad performance report metrics

2017-02-09 Thread Improvado
Hello. I try to download Ad Performance report and requesting, in particular, these fields: EnhancedDisplayCreativeMarketingImageMediaId, EnhancedDisplayCreativeLogoImageMediaId, according to https://developers.google.com/adwords/api/docs/appendix/reports/ad-performance-report But in response

Re: Ad performance report metrics

2017-02-09 Thread 'Peter Oliquino' via AdWords API Forum
Hi, The fields you mentioned are not available for the 201605 version of the Ad Performance Report. Additionally the v201605 version has been deprecated

Re: Google Adwords API Language selector problem

2017-02-09 Thread Mustafa
Vishal that is the log file which has NULL values and correct ones at the same time. If needed I can make them seperated (if I can :P) NULL ones will not give the values: $data = MapEntries::toAssociativeArray($targetingIdea->getData()); $keyword = $data[AttributeType::KEYWORD_TEXT]->getValue();

Re: reported Gender/AgeRange state is inconsistent with Adwords UI

2017-02-09 Thread cv
Hello Nadine, I have same question, but I am not getting you properly. - In the API, *REMOVED* means that the criterion was removed or has not been added. -> I am seeing that criteria was added and I can see Data under the UI as Status as active. So what do you mean by criterion was remo

Re: Is there are table mapping currencies to the smallest non-fractional unit?

2017-02-09 Thread Christian
Hi, the links still work but do not provide information about minimal CPC values per currency anymore. Could you please provide updated links? Thanks ind advance! Christian On Thursday, July 24, 2014 at 12:17:41 AM UTC+2, Josh Radcliff (AdWords API Team) wrote: > > Hi Christian, > > You can u

Re: Destination and display URLs

2017-02-09 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Mark, This guide shows how to customize text ads in the AdWords UI using the options I mentioned above. You can include customized text in the Path1 and Path2 fields so that the displayUrl can be customized. You can try this out and t

Re: Estimate keyword traffic volume

2017-02-09 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, You can pass a variable to the setText() method as shown in this example . You need to include at least one CampaignEstimateRequest

Keeping the access token valid during API calls

2017-02-09 Thread Danny
Hi I'm currently running into API call issues whenever my access token expires. I've already saved the client's refresh token and I'm trying to figure out whether AdWords will automatically renew the access token if you build the session with the OAuth2 object that contains the refresh token d

Re: Keeping the access token valid during API calls

2017-02-09 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Danny, You can check if the access token is about to expire and then refresh this token as needed. The OAuth2TokenRefresher.php provides functionality to retrieve OAuth2 acces

Re: reported Gender/AgeRange state is inconsistent with Adwords UI

2017-02-09 Thread 'Nadine Sundquist (AdWords API Team)' via AdWords API Forum
Greetings! The Status field of the *Gender Performance Report* does not perfectly line up with the Status in the API. It has a different meaning in the API than it does the UI. What confuses use

Re: Is there are table mapping currencies to the smallest non-fractional unit?

2017-02-09 Thread 'Josh Radcliff (AdWords API Team)' via AdWords API Forum
Hi Christian, Thanks for pointing that out. I'm still looking into where the minimal CPC values/currency are now published. I'll get back to you as soon as I have more info. Cheers, Josh, AdWords API Team On Thursday, February 9, 2017 at 8:26:40 AM UTC-5, Christian wrote: > > Hi, > > the links

Re: Keeping the access token valid during API calls

2017-02-09 Thread Danny
Thanks - I'll look into that. But could you also clarify whether the code snippet I shared would work, if I create the session with the OAuth2 object containing the refresh token? On Thursday, 9 February 2017 13:16:37 UTC-8, Shwetha Vastrad (AdWords API Team) wrote: > > Hi Danny, > > You can ch

PHP API v201609 - How to refresh token?

2017-02-09 Thread Adam Haining
I'm using the PHP API v201609. It is working great, except that the documentation states it will refresh the token for you automatically. There are no code examples for how to implement this. I've tried everything under the sun with no luck. Can someone give me some tips and pointers for ge

geotargeting: Downloading all locations

2017-02-09 Thread Nimcy Sucheendran
Hi I have a requirement where I want to download the report seen here on a daily basis. https://developers.google.com/adwords/api/docs/appendix/geotargeting I did manage to use the LocationCriterionService and download some data. However, here are a few issues. 1. I would like to download al

Programmatically accessing the custom reports built using the AW Report Editor?

2017-02-09 Thread Pete
Hi, Is there a way to programmatically access data that's generated by the custom reports defined in AdWords Report Editor? The two ways I know of accessing AW report data in general (the AW Scripting and the AW API itself) do not seem to support accessing the Report Editor reports. Only the

Need access to API, but don't work for a company, how?

2017-02-09 Thread hemza wind
So I'm just a student that wants to use the keyword data per location and click through rates. But in order to do so I need A manager account. And fill in a company I work for, which I don't. Is there any possible way to be able to do this? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: PHP API v201609 - How to refresh token?

2017-02-09 Thread 'Peter Oliquino' via AdWords API Forum
Hi Adam, Refreshing of expired access tokens happens when the Credential object is instantiated in the client libraries. To better give you an idea of the process, first you will need to have a refresh token that is generated manually. Please note that due to a number of reasons, the refresh to

Re: Programmatically accessing the custom reports built using the AW Report Editor?

2017-02-09 Thread 'Peter Oliquino' via AdWords API Forum
Hi Pete, There is currently no way to access the custom reports of the AdWords Report Editor via the AdWords API and also no available feature to integrate reporting via email or Google Drive. However, if you need to send API reports via email or save in Google Drive, you may use AdWords Script

Re: Need access to API, but don't work for a company, how?

2017-02-09 Thread 'Peter Oliquino' via AdWords API Forum
Hi, You may still use the AdWords API through test accounts. You may refer here for the steps on how to setup your test accounts and to this guide

Re: Keeping the access token valid during API calls

2017-02-09 Thread Adam Haining
I've tried all of this as well, and if I try to force renewing the token before it expires, it just gives me the current token. Then after it expires, I just always get the message: invalid_grant Token has been expired or revoked. Specific examples on how to do this would be greatly appreciated

Re: Destination and display URLs

2017-02-09 Thread Mark Wills
Yes. I understand. I've used Path fields before, but the issue I face is with keyword insertion for these paths. I.e., say i have 50 keywords in an ad group and each has its own final URL. Also, I want each ad to be customized based upon the the final URL and the keyword so I use dynamic keywor

Re: PHP API v201609 - How to refresh token?

2017-02-09 Thread Adam Haining
Thanks. I'm able to manually get a new token without any problems. I haven't been able to get it to refresh or see where it gives me a new token. I have a few questions: 1. Can I refresh the token after it expires? I've tried everything I can think of, including using the OAuth2TokenR

Re: geotargeting: Downloading all locations

2017-02-09 Thread 'Joyce Lava' via AdWords API Forum
Hi Nimcy, Please see my responses below: 1. I would like to download all target locations rather than having to feed in the location names. Is there any other service or a query I could issue? There is no other way I am aware of (using AdWords API services) that you can get geo locations aside

Can I get real-time postbacks of my AdWords ad performance to my server?

2017-02-09 Thread 정재엽
Hi. Is there a way to get real-time postbacks of my AdWords ad performance to my server? Thanks. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=