Re: RichMediaAd Example?

2017-10-19 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Guadalupe,

Currently, we do not have an example on creating a RichMediaAd 
.
 
However, this is just the same as creating an expanded text ad 

 (in 
Java), but you just need to change the object being used. You can use the 
ThirdPartyRedirectAd 

 object 
which is a sub type of RichMediaAd. You can check on the link for the 
required properties that you need to set.

Let me know if you encounter any issues when doing this.

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/229cc6b8-21d2-487b-93bb-dca51f851f65%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


strange results from TargetingIdeaService (keyword planner)

2017-10-19 Thread Daphna Wegner
I have a simple function to get the search volume for keywords, however in 
the last few days we noticed some strange behaviour, when the following 
keyword is sent the volume is correctly returned: 

words = ['test']

however when this keyword is sent the results are empty:

words = ['arutz']

even more when these words are sent together the results are empty as well:

words = ["test","arutz"]

(if I manually enter these in the keyword planner I do get search volumes 
for each word)

this is the function for getting the search volume:

def TestVolume(words):  
  PAGE_SIZE = 100


  # Initialize appropriate service.
  targeting_idea_service = client.GetService('TargetingIdeaService', version
='v201705')


  # Construct selector object and retrieve related keywords.
  offset = 0
  selector = {
'searchParameters': [
{
'xsi_type': 'RelatedToQuerySearchParameter',
'queries': words
},
],
'ideaType': 'KEYWORD',
'requestType': 'STATS',
'requestedAttributeTypes': ['KEYWORD_TEXT', 'SEARCH_VOLUME'],
'paging': {
'startIndex': str(offset),
'numberResults': str(PAGE_SIZE)
}
  }
  more_pages = True
  while more_pages:
  page = targeting_idea_service.get(selector)
  # Display results.
  if 'entries' in page:
for result in page['entries']:

  attributes = {}
  for attribute in result['data']:
attributes[attribute['key']] = getattr(attribute['value'], 
'value','0')
  print ('Keyword \'%s\'  average monthly search volume '
 '\'%s\n'
 % (attributes['KEYWORD_TEXT'],
attributes['SEARCH_VOLUME']))
  print attributes
  word = {}
  word[attributes['KEYWORD_TEXT']] = attributes['SEARCH_VOLUME']

  else:
print 'No related keywords were found.'
  offset += PAGE_SIZE
  selector['paging']['startIndex'] = str(offset)
  more_pages = offset < int(page['totalNumEntries'])




-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f2b74e32-99d3-4ae8-affc-f7461260a199%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Keywords vs. Criteria

2017-10-19 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Austin,

A keyword 

 is 
one of the types of a criterion 
.
 
Other types include criterionUserList 

, gender 

, placement 
,
 
etc. The chart here 
 shows 
that a keyword is an example of a criteria.

Let me know if you have further clarifications.

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c4169620-2918-4f98-a73f-08e26ef686f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RichMediaAd Example?

2017-10-19 Thread Guadalupe Estrada
Hello,

I've been trying to find an example of RichMediaAd with no success. Could 
anyone please help me?
I appreciate any help you can provide.

Thanks in advance!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/bd913860-eb96-460c-8aaf-878e0488b88a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


CustomerNegativeCriterion and Video campaigns

2017-10-19 Thread 'Tim Tsai' via AdWords API Forum
Hi there,

I see that the updated API (v201710) allows one to apply negative 
criterions at the Account Level.

Let us say that I have an account with some Display campaigns and some 
Video campaigns. If I apply the negative criteria to the account using the 
CustomerNegativeCriterionService, will they be applied to BOTH my display 
and video campaigns?

I know that previously, I was unable to apply negative criteria to videos 
at all, but perhaps the account level service will allow for that now.


Thanks,
Tim 

-- 
Please note our email domain has changed to @essenceglobal.com
---
essenceglobal.com 
Facebook  • Twitter 
 • YouTube 
 • Instagram 


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/26dabab1-4593-4cfa-ba86-1887a9fd5dbb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Keywords vs. Criteria

2017-10-19 Thread Austin Smith
Are Keywords and Audiences just different types of Criteria?

On Thursday, October 19, 2017 at 2:38:36 PM UTC-7, Austin Smith wrote:
>
> According to the diagram at:
>
> https://developers.google.com/adwords/api/docs/guides/reporting#criteria_prefixes
>
> Criteria Performance and Keyword Performance are two different reports, 
> ie. Criteria and Keywords are separate entities that both belong to ad 
> groups.
>
> However, according to the chart at:
> https://developers.google.com/adwords/api/docs/guides/objects-methods
>
> A criteria IS a keyword.  What am I missing?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/43bc734f-5e43-4b49-ba6a-193f8bf0e0a8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Keywords vs. Criteria

2017-10-19 Thread Austin Smith
According to the diagram at:
https://developers.google.com/adwords/api/docs/guides/reporting#criteria_prefixes

Criteria Performance and Keyword Performance are two different reports, ie. 
Criteria and Keywords are separate entities that both belong to ad groups.

However, according to the chart at:
https://developers.google.com/adwords/api/docs/guides/objects-methods

A criteria IS a keyword.  What am I missing?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2e43020e-7e77-4f12-9f18-3f52d12c3dbb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to fetch “demographic combinations” report via Google Adwords API?

2017-10-19 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, 

The metrics and stats will only be available via reports. Since the 
demographic data (Age and Gender) fields are not available in one single 
report, it might not be possible to combine the stats of both. However, you 
can use these reports as two individual reports. Unfortunately, to get the 
stats segmented based on demographic data (Age and Gender) as you are 
looking for might not be possible. 

Regards,
Bharani, AdWords API Team

On Thursday, October 19, 2017 at 10:09:18 AM UTC-4, Necati Demir wrote:
>
> Hi,
>
>
> I can see a "demographic combinations" report on Google Adwords dashboard. 
> I want to fetch it via Google Adwords API. I could not find which 
> function/parameters provides this functionality.
>
>
> Any experience on this topic?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3e3392cb-7b9e-4058-9e30-05e818fd848f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is there any way to get the initial date for every report programmatically?

2017-10-19 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, 

I'm afraid it is not possible to get the minimum available date for a 
report. Any particular report will return results based on the dateRange 
specified in the selector. You can take a look at the available date ranges 
for report types here 
. 
You can also include the dateRange with min and max 

 values 
in your selector to filter the results. Also, please note that dateRange 

 is 
available only for report download service. Let me know if you have any 
other concerns.

Regards,
Bharani, AdWords API Team

On Thursday, October 19, 2017 at 3:15:48 PM UTC-4, davidr...@gmail.com 
wrote:
>
> Hi,
> I wonder if there is any way to get the minimum available date for a 
> report.
> What I mean is, if I am requesting CRITERIA_PERFORMANCE_REPORT with date 
> range type: ALL_TIME, I assume I am getting data from the "minimum" 
> available date to the maximum.
> So I would like to know how I can get that "minimum available date" 
> programmatically.
> Thanks,
>
> -David
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/17c5e2bb-37bc-40e6-806d-984e6dfd1fef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is it possible to use Google Adwords API for keyword research personal use?

2017-10-19 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, 

You can use TargetingIdeaService 

 
in AdWords API to retrieve targeting ideas from your own tool/platform 
programmatically. You can use this service to obtain results similar to the 
functions under *Find new keywords and get search volume data* in Keyword 
Planner. Please see this guide 
 
for more details on using TargetingIdeaService.

As a first step, you need to sign up for API access by following the 
instructions provided here 
. While 
waiting for token approval, you can start developing and experimenting with 
the API immediately, using test accounts 
.
 
Please note that TargetingIdeaSerice returns dummy data when used with test 
accounts. Once you get your developer token approved, you can start making 
requests against your production account. The GetKeywordIdeas 

 
Java example shows how to get keywords related to a seed keyword. Example 
code in other languages is provided here 
. 

Regards,
Shwetha, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/89fc17c8-b3d0-46ac-8fab-e3a464bfabcb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to fetch “demographic combinations” report via Google Adwords API?

2017-10-19 Thread Necati Demir
Hi,

Thanks. I have used Age Range Performance Report and Gender Performance 
Report. 

I can get the following information with age report:
age18_24,adgroupid,cpc

And, I can get the following information with the gender report;
male,adgroupid,cpc

BUT, I am looking for the combination like this:
age18_24,make,adgroupid,cpc

How can I fetch that information?


On Thursday, 19 October 2017 14:18:09 UTC-4, Bharani Cherukuri (AdWords API 
Team) wrote:
>
> Hello, 
>
> You will be able to pull the demographic data using different individual 
> report types. Please refer to the available Report Types 
>  to pull 
> data from the API. Since all the demographic data are not available in 
> one report, you will have to use different report types to pull this data. 
> You can use Age Range Performance Report 
>  and Gender Performance Report 
> 
>  to 
> retrieve the age and gender fields data from the UI. Let me know if you 
> have any other questions.
>
> Thanks,
> Bharani, AdWords API Team
>
> On Thursday, October 19, 2017 at 10:09:18 AM UTC-4, Necati Demir wrote:
>>
>> Hi,
>>
>>
>> I can see a "demographic combinations" report on Google Adwords 
>> dashboard. I want to fetch it via Google Adwords API. I could not find 
>> which function/parameters provides this functionality.
>>
>>
>> Any experience on this topic?
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/15694321-e803-46f0-809b-61023067d37d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Is there any way to get the initial date for every report programmatically?

2017-10-19 Thread davidrbengoa
Hi,
I wonder if there is any way to get the minimum available date for a report.
What I mean is, if I am requesting CRITERIA_PERFORMANCE_REPORT with date 
range type: ALL_TIME, I assume I am getting data from the "minimum" 
available date to the maximum.
So I would like to know how I can get that "minimum available date" 
programmatically.
Thanks,

-David

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/403bf59c-4265-40d4-9b31-724e013d4760%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Is it possible to use Google Adwords API for keyword research personal use?

2017-10-19 Thread Edward Anthony
Get the keyword idea in Google Keyword Planner, save the results to Excel 
and filter it, copy and paste it to the Google Keyword planner again to get 
the volume, and download the result again, this really takes time. Not to 
mention I have to compare the result for each country, which makes it even 
longer.

I want to make an automation tool that shortens my keyword researching 
process, for my personal use.

Is it possible to use Google Adwords API for this type of use?


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/bd079853-f0ae-47ef-b6b4-38f8ca1b2a53%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Cannot find Watch Time and Avg. Watch time/impressions in the API

2017-10-19 Thread RB
Looking for the same metrics !! I am using AdPerformace Report and looking 
for Avg watch time & watch time metrics for YouTube Video campaigns. 

Thanks

On Monday, April 24, 2017 at 1:08:37 AM UTC-7, annalecta...@gmail.com wrote:
>
> Hi Guys,
>
> We cannot find the metrics Watch Time and Avg. Watch time/impressions in 
> the Adwords API Ad Report. Please let us know if they are under different 
> names. 
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/47c5b2d4-13e2-4e9e-a146-d75a4fcc8c8c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Field AllConv.Value/Cost not available in reports?

2017-10-19 Thread 'Jude Amagoh' via AdWords API Forum
Hi Oliver,

The field All Conv. Value / Cost that's available in the Adwords interface 
is not available in the API at the moment. You can keep an eye out for this 
feature on the Adwords Blog . For 
now you can retrieve this information from the API by including the fields 
AllConversionValue 

 and Cost 

 within 
your selector and manually divide them. That should give you an equivalent 
value. 

Best Regards,
Jude, Adwords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1e9209cd-7473-49a1-a0ca-ba5288a6150b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to fetch “demographic combinations” report via Google Adwords API?

2017-10-19 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, 

You will be able to pull the demographic data using different individual 
report types. Please refer to the available Report Types 
 to pull 
data from the UI. Since all the demographic data are not available in one 
report, you will have to use different report types to pull this data. You 
can use Age Range Performance Report  and 
Gender 
Performance Report 

 to 
retrieve the age and gender fields data from the UI. Let me know if you 
have any other questions.

Thanks,
Bharani, AdWords API Team

On Thursday, October 19, 2017 at 10:09:18 AM UTC-4, Necati Demir wrote:
>
> Hi,
>
>
> I can see a "demographic combinations" report on Google Adwords dashboard. 
> I want to fetch it via Google Adwords API. I could not find which 
> function/parameters provides this functionality.
>
>
> Any experience on this topic?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4f2a6ea8-079b-4212-a62e-84b057394476%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: get_campaigns.py occur api unexpected internal api error

2017-10-19 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi,

An InternalApiError 

 
may occur due to a temporary resource related issues in the AdWords API 
server. Could you retry the request and let me know if this error occurs 
again? If this error persists, please enable logging by following the 
instructions provided here 

 
and send over the SOAP request and response logs. Please use Reply 
privately to author when responding. 

Regards,
Shwetha, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7a1a1984-7919-4ba8-8c2f-1f08d69fb6b9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is it possible to extract only keyword suggestions with a average monthly search volume bigger than a specific threshold, let's say 100?

2017-10-19 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, 

You can use different SearchParameters to filter the set of all possible 
TargetingIdeas 
.
 
For example, you can specify the level of search volume expected in results 
using SearchVolumeSearchParameter 

 or 
use the CompetitionSearchParameter 

 to 
filter the results by the amount of competition. This guide 

 
describes how different options in the Keyword Planner are mapped to 
different SearchParameters 

 in 
the TargetingIdeaSelector configuration. 

Regards,
Shwetha, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/298acb39-888e-4a88-99db-36a23e2fb894%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Field AllConv.Value/Cost not available in reports?

2017-10-19 Thread Oliver
The field *All Conv. Value / Cost *is available in the Adwords interface 
but we can't see it anywhere in the reports.

Are there any plans to include it anytime soon?

Oliver

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f3d3e719-99e3-46b5-9ce1-455628d49986%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How can i access any AdWords Account with Google Login

2017-10-19 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, 

All AdWords API calls must be authorized through OAuth2 
.
 
You need to setup authentication for your application by following this 
guide 
.
 
You can then follow this guide 

 to 
set up the application for API access on behalf of your clients using web 
flow  or 
installed 
application flow 
. In 
situations where your app needs to access AdWords accounts that are not 
related to one another in any manager account hierarchy, you should 
generate and maintain different refresh tokens for each top-level manager 
account or AdWords client account in the independent hierarchies you 
access. Refresh tokens do not expire. You can store the refresh token and 
get new access tokens when the current access token expires. By default, 
our client libraries automatically refresh expired access tokens. Please 
see this guide 

 for 
more details. 

Regards,
Shwetha, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8aaf6b0a-7299-416e-a17c-72d032ba48bd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to fetch “demographic combinations” report via Google Adwords API?

2017-10-19 Thread Necati Demir


Hi,


I can see a "demographic combinations" report on Google Adwords dashboard. 
I want to fetch it via Google Adwords API. I could not find which 
function/parameters provides this functionality.


Any experience on this topic?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/42041345-2ce1-470b-8ac6-1d2437a060fb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Is it possible to extract only keyword suggestions with a average monthly search volume bigger than a specific threshold, let's say 100?

2017-10-19 Thread Milan Karsten
I am now able to extract keyword suggestions and volume but run into the 
Adwords API request limitations. That's why it would be nice to extract 
only keyword suggestions that are relevant for me. If yes, are there other 
elements where I can filter the keywords to be extracted on?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3ae568cc-cfee-4293-914c-2bf794aab1f4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


get_campaigns.py occur api unexpected internal api error

2017-10-19 Thread 박형철
i run get_campaigns.py then, ERROR:suds.client:(InternalApiErro],
 
'isFault': True,
 'requestId': 00055be33cd457300a62df1596091e9a, 'responseTime': 129, 
'serviceName': CampaignService}

my requestId : 00055be33cd457300a62df1596091e9a

i used this code 
https://github.com/googleads/googleads-python-lib/blob/master/examples/adwords/v201708/basic_operations/get_campaigns.py

and i saw this document
https://developers.google.com/adwords/api/docs/common-errors?csw=1#InternalApiError
but i can't this problem and i used basic level developer token

this error occur in get_campaigns.py 56 lines   
page = campaign_service.get(selector)

how can i solve this problem?

help me please 


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a54f6320-be7c-441d-a66d-b178c76b4576%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: What are requirements for poxy server to coop with Google AdWordsAPI library

2017-10-19 Thread Dorian Kind
If I may chime in, I'm pretty sure the googleads library only connects to 
"adwords.google.com". The "1e100.net" domain probably originates from a 
reverse lookup:

$ host adwords.google.com 
adwords.google.com is an alias for adwords.l.google.com.
adwords.l.google.com has IPv6 address 2a00:1450:400c:c04::64

$ host 2a00:1450:400c:c04::64 
4.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.4.0.c.0.c.0.0.4.0.5.4.1.0.0.a.2.ip6.arpa domain 
name pointer wk-in-x64.1e100.net.

So if we're talking about a web proxy, whitelisting the 
"adwords.google.com" host should be fine. If you really need to whitelist 
on the network level, Google announces quite a number of IPv6 prefixes...


On Thursday, 19 October 2017 09:39:25 UTC+2, Sebastian Piskorski wrote:
>
> But requirements for proxy should be the same for all languages. All I 
> need is probably list of addresses that I have to whitelist in order to run 
> AdWords API requests through proxies using Google Library. Also, I think 
> you should know CURL and why lib tries to connect 
> "2a00:1450:4016:80c::200a:", and how to force it to use domain address 
> instead.
>
> On Wednesday, October 18, 2017 at 10:30:33 PM UTC+2, Jude Amagoh wrote:
>>
>> Hi,
>>
>> I'd be glad to assist you with your query but, unfortunately this 
>> question is out of my scope. I recommend you post your question on the php 
>> github  and they'll 
>> be better equipped to answer this question. 
>>
>> Best Regards,
>> Jude, Adwords API Team
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3000d30f-d1c2-48ed-a390-0e04b75d9051%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Create new conversion actions using the API

2017-10-19 Thread Elton Morais
Hi Zweitze,

Thank you for the help, that was exactly what I was looking for  :D


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fae70b77-e853-4b40-869e-cec1b9b1abd2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Create new conversion actions using the API

2017-10-19 Thread Elton Morais
Hi Jude,

Thank you for your answer. 
But I want something specific, let me explain it:
- At adwords.google.com I can create new Conversion Actions (Website, App 
or Phone Calls), what I'm trying to do is use Adwords API to create a, lets 
say, website conversion action, for instance. Can I do it with the API?

Thank you for your time

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d14be87d-0e5b-4eaa-8275-58d3a62ad0b5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to add dummy data to my test account

2017-10-19 Thread 'Chris Mason' via AdWords API Forum
This is absolutely ridiculous, ive just gone through the biggest headache 
trying to get a test account in adwords so i can test an api that collects 
spend data and now the api wont return the required data i need to test as 
test accounts dont have test data, pretty much defeats the point of a test 
account, for once facebook test accounts are better than google test 
accounts at least they provide test data!

Can anyone here provide a solution to being able to actually get fake ad 
spend data into a test account?

On Monday, 25 March 2013 03:15:41 UTC, Jonathan Sosa wrote:
>
> Hi
>
> I'm trying to get the Campaign Performance Report for my test account, but 
> it returns no rows.
>
> I think the reason is adding the required segment field ClickType. (All 
> my test campaigns have no clicks)
>
> Is there a way to add dummy data Clicks/Impressions/etc to my test 
> campaigns?
>
> Best
> Jonathan
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2ab50951-72d6-4361-927f-1a5febd5b779%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How can i access any AdWords Account with Google Login

2017-10-19 Thread sabanci . bulent . 68
Hi,

I have an AdWords API and i want create custom reports for any customers.

Like ReportGarden or others i want to use Google Login for access to 
AdWords Account. Which service i must be use?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/da77b74d-5a36-4253-95b6-85010137e9d3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Can we upload non gmail address to audience list to add to campaigns to display adds.

2017-10-19 Thread 'Peter Oliquino' via AdWords API Forum
Hi Hari,

Currently for uploading audiences via customer match 
,
 
email addresses must be associated to a Google account. As for targeting in 
GMail, only gmail addresses can be used as discussed in this section 
 of 
the remarketing and audience targeting 
 guide. 
Let me know if this helps.

Thanks and regards,
Peter
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1d32de09-d1f6-4196-b489-f3e8a3b7c84d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: What are requirements for poxy server to coop with Google AdWordsAPI library

2017-10-19 Thread Sebastian Piskorski
But requirements for proxy should be the same for all languages. All I need 
is probably list of addresses that I have to whitelist in order to run 
AdWords API requests through proxies using Google Library. Also, I think 
you should know CURL and why lib tries to connect 
"2a00:1450:4016:80c::200a:", and how to force it to use domain address 
instead.

On Wednesday, October 18, 2017 at 10:30:33 PM UTC+2, Jude Amagoh wrote:
>
> Hi,
>
> I'd be glad to assist you with your query but, unfortunately this question 
> is out of my scope. I recommend you post your question on the php github 
>  and they'll be 
> better equipped to answer this question. 
>
> Best Regards,
> Jude, Adwords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/eb386228-61ca-45ce-ab58-1a9085110ef9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How can I get user's details after he loggedin in google ads account.

2017-10-19 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Abhishek,

Currently, it is not possible with the AdWords API to get the details of 
the user who logged in. Kindly follow our blog 
 for any 
future updates like new releases.

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/99033835-37ae-4d21-92e1-7851d5a7bbf4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How can I get user's details after he loggedin in google ads account.

2017-10-19 Thread abhishek . sharma
Dear Team,

I am using googleads-php-lib to integrate my application with google ads. I 
wan to allow user's to add their google ad account in my application So I 
need their details like name,emailid or account id after they log in in the 
google ads account.

Pls help me how can i get these details.

Thanks in advance.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1d47da95-87c3-4c35-9895-7389b703f880%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.