Re: Error: error:0307A071:bignum routines:BN_rand_range:too many iterations

2015-12-21 Thread Thanet Knack Praneenararat (AdWords API Team)
Hi Leonardo, That seems *not* to be an error from PHP nor our client lib. And it seems an elusive problem that occurs in many cases . For now, I

Re: Matching function in ad customizer is not working

2015-12-21 Thread Kainesh Patel
Hi Yin, I am unable to capture soap request and response. Can you try the code in your setup? Thanks, Kainesh On Tuesday, December 22, 2015 at 4:22:39 AM UTC+5:30, Kainesh Patel wrote: > > Hi, > > I have changed my matching function to IN(FEED_ITEM_ID, {2807134218}), > where 2807134218 is FEE

Re: Matching function in ad customizer is not working

2015-12-21 Thread Kainesh Patel
Hi, I have changed my matching function to IN(FEED_ITEM_ID, {2807134218}), where 2807134218 is FEED_ITEM_ID. But its not helping. Unable to capture soap request and response from the Java code. WIll uodate you, once I have it. Thanks, Kainesh On Tuesday, December 22, 2015 at 3:49:34 AM UTC+5:

Re: Upgraded URL / CriteriaDestinationUrl empty in CriteriaPerformanceReport

2015-12-21 Thread dd
I have the same problem. Actually in all reports I tried CriteriaDestinationUrl (and other URL related fields are empty). Some of the reports I tried, all via AdHoc XML. PRODUCT_PARTITION_REPORT CRITERIA_PERFORMANCE_REPORT SEARCH_QUERY_PERFORMANCE_REPORT On Friday, May 1, 2015 at 9:55:11 PM U

Re: Matching function in ad customizer is not working

2015-12-21 Thread Yin Niu
Hi Kanesh, Could you please send SOAP request and response log for further analysis? In the meantime, you could try to match by FeedItemId . Thanks, Yin, AdWords API Team. -- -- =~=

Re: shopping keywords + dest.urls

2015-12-21 Thread dd
Hello Anthony, Thanks for swift response. I see there is no single report to get all the data. But is there another way. Like first downloading queries and joining them with criterions. Or some other way? Maybe using Analytics data? Maybe getting query + item id, which can be joined? Any 'out

Re: batch job service giving operand and error message both as null

2015-12-21 Thread Josh Radcliff (AdWords API Team)
Hi Kainesh, I took a look at the *BatchJobHelper* utility, and one thing you might try is specifying an alternate TransformerFactory via the *javax.xml.transform.TransformerFactory* system property. Per the

Re: Matching function in ad customizer is not working

2015-12-21 Thread Kainesh Patel
Hi Yin, Any update or progress, you would like to share with me? Thanks, Kainesh On Tuesday, December 22, 2015 at 3:03:27 AM UTC+5:30, Kainesh Patel wrote: > > Hi, > > Thanks for the quick response. > > The output is been shared with you in output.txt. > The output is Feed with name 'MyFirstFeed

Re: batch job service giving operand and error message both as null

2015-12-21 Thread Kainesh Patel
Hi Josh, We use some of the reporting service. But there are working as expected. Thanks, Kainesh On Tuesday, December 22, 2015 at 3:09:05 AM UTC+5:30, Josh Radcliff (AdWords API Team) wrote: > > Hi Kainesh, > > On the production machine where you ran into issues, have you successfully > used

Re: Distance segmentation using the API.

2015-12-21 Thread Anthony Madrigal
Hello, The 20 miles from Miami should be a radius around it. It should show up in the map if you send it through the API. If you still do not see them in your UI, please send me (via *reply privately to author) *the campaign Ids where these are being targeted. Regards, Anthony AdWords API Team

Re: batch job service giving operand and error message both as null

2015-12-21 Thread Josh Radcliff (AdWords API Team)
Hi Kainesh, On the production machine where you ran into issues, have you successfully used any of the SOAP services and the report services? I ask because those use many of the same XML utilities used by the BatchJobService utility. Thanks, Josh, AdWords API Team On Monday, December 21, 2015

Re: Matching function in ad customizer is not working

2015-12-21 Thread Kainesh Patel
Hi, Thanks for the quick response. The output is been shared with you in output.txt. The output is Feed with name 'MyFirstFeed556' and ID 32350825 with nameAttributeId *Name 1* and priceAttributeId Price 2 and dateAttributeId Date 3 and inventoryId inventory 4 was created. So, 1 corresponds to

Re: Matching function in ad customizer is not working

2015-12-21 Thread Yin Niu
Hi Kanesh, Could you send the output for the following code? System.out.printf("Feed with name '%s' and ID %d with nameAttributeId %s %d" + " and priceAttributeId %s %d and dateAttributeId %s %d and inventoryId %s %d" + " was created.\n", savedFeed.getName(),

Re: shopping keywords + dest.urls

2015-12-21 Thread Anthony Madrigal
Hi, Unfortunately, AdWords API does not support returning the destination Url or Query for shopping campaigns in the reports. Please check out our blog regarding any updates to this feature. Regards, Anthony AdWords API Team -

Re: batch job service giving operand and error message both as null

2015-12-21 Thread Kainesh Patel
Hi Josh, I planned to migrate from BatchJobService to BulkMutateService (a month back). It worked on my local machine, but it got broke down in production environment, I then have to revert back the changes and came back again to BatchJobService. I was able to do that since BatchJobService wasn

Re: Matching function in ad customizer is not working

2015-12-21 Thread Kainesh Patel
Hi Yin, Thanks for your quick reply. The matching function used in the code doesn't use either feedId or feedAttribute Id. It used FEED_ITEM_ID. String matchingFunctionString = String.format("AND( IN(FEED_ITEM_ID, {%s}), EQUALS(CONTEXT.DEVICE, 'Mobile') )",Joiner.on(',').join(siteLinksData.sit

Re: Matching function in ad customizer is not working

2015-12-21 Thread Yin Niu
Hi Kainesh, Please take a look at this code example . You are hard-coding the feedAttributeIds. That might be the problem. Thanks, Yin,

Re: batch job service giving operand and error message both as null

2015-12-21 Thread Kainesh Patel
Yes. I didn't got NoClassDefFoundError and xml parser didn't worked correctly. By any chance, it can be fixed by importing libraries and if yes, can you can include it in your jar? Thanks, Kainesh On Tuesday, December 22, 2015 at 2:02:45 AM UTC+5:30, Josh Radcliff (AdWords API Team) wrote: > >

Re: Matching function in ad customizer is not working

2015-12-21 Thread Kainesh Patel
Hi Yin, I have used feed Attribute Id only which in my case is 1, which I got it before populating the feed items. If I am not wrong, there is no concept of feedItemAttribute Id, please correct me if I am wrong. Thanks, Kainesh On Tuesday, December 22, 2015 at 1:57:41 AM UTC+5:30, Yin Niu wr

Re: batch job service giving operand and error message both as null

2015-12-21 Thread Josh Radcliff (AdWords API Team)
Hi Kainesh, Those utilities should be present in any JRE. I think the issue you had was that the particular JRE you were using had a bug that meant that the XML wasn't being parsed properly. If it had been an issue with a missing dependency, I think you would have seen a NoClassDefFoundError <

Re: Matching function in ad customizer is not working

2015-12-21 Thread Yin Niu
Hi Kainesh, When you match by feed attribute, you should use the [feedId, feedAttributeId] as lhsOperand . It seems that you have used feedItemAttributeId as feedAttributeId in the match

Re: shopping keywords + dest.urls

2015-12-21 Thread dd
I know there were some topics about this about 1.5 years ago. Are there any new possibilities? On Monday, December 21, 2015 at 9:03:48 PM UTC+1, dd wrote: > > Is there a way to download all "Search terms" and "Destination urls" for > shopping campaigns? Similar to KEYWORDLESS_QUERY_REPORT but fo

shopping keywords + dest.urls

2015-12-21 Thread dd
Is there a way to download all "Search terms" and "Destination urls" for shopping campaigns? Similar to KEYWORDLESS_QUERY_REPORT but for shopping. I cannot seem to find dest.urls. of click on shopping ads :( -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Go

(PHP) AdGroupCriterionService: UserListId's not listed for any CriterionUserList

2015-12-21 Thread Blake Lafleur
I am trying to get userlist IDs that are associated with criterion for a specific adgroup. I am successfully able to retrieve all criterion for the adgroup, but according to the docs HERE

Distance location segmentation using API.

2015-12-21 Thread Juanbcn
Hello I've created a LocationGroups instance using AdwordsAPI and I've set the FeedId. With the LocationExtensionOperand, I've set a Radius and a LocationId. In the Adwords user interface, advanced Search from geographic segmentation I can see "20 mi within Miami, Florida, United States" in

Distance segmentation using the API.

2015-12-21 Thread Juanbcn
Hello! I've created a LocationGroups instance using AdwordsAPI and I've set the FeedId. With the LocationExtensionOperand, I've set a Radius and a LocationId. In the Adwords user interface, advanced Search from geographic segmentation I can see "20 mi within Miami, Florida, United States" in

Re: Is it possible to download reports for multiple adwords accounts in one api call

2015-12-21 Thread Josh Radcliff (AdWords API Team)
Hi, One reason for this is simply scalability. If you ran a single report for all accounts under your manager account and you had hundreds of accounts, it's likely that you'd run into report timeouts. If you are running reports individually for multiple accounts and you want to combine the res

Re: Limitations for Creating Campaing - Ad Group - Text Ads

2015-12-21 Thread Yin Niu
Hello, The best choice in your case is to use BatchJobService to batch process the job. You can find rate limits information here . Thanks, Yin, AdWords API

Re: How to increase rate limit for creating merchant center subaccounts?

2015-12-21 Thread Umesh Dengale
Hello, This forum is related to the AdWords API. Above question is related to the Shopping API. Please post your question in the Shopping API forum . Thanks, Umesh, AdWords API Team. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Re: Exact match keywords in Keywords Performance Report

2015-12-21 Thread Yin Niu
Hi Ney, Keyword is a type of Criterion . You can try the KeyWordMatchType field

Re: for the same AdGroupId,CampaignId,Date i get more then one row VIDEO_PERFORMANCE_REPORT

2015-12-21 Thread Yin Niu
Hello, The Date field is segment field. If you don't want to see multiple rows for each AdGroup, you could try removing Date column. Thanks, Yin, AdWords API Team. -- -- =~=~=~=~=~=~=~=~=~=~=

Limitations for Creating Campaing - Ad Group - Text Ads

2015-12-21 Thread Nikola Jordanovski
Hello AdWords API Team, so i am trying to create maybe something over 5000 Ad Group -> Text Ads in one run.What i mean by that is i am planing to create an ad group and text ad for each of our 5500 products in our database, so my plan is to run a FOREACH that will take each product, compose an

Re: How to pass parameters through oauth.

2015-12-21 Thread James Andrews
Man I'm an idiot. I was doing &state= on the wrong URL and Google yelled at me. Now I know why. My bad nothing to see here. On Tuesday, December 22, 2015 at 1:22:09 AM UTC+9, James Andrews wrote: > > Hello, > > Our application requires me to pass 3 parameters through auth that get > processed

How to pass parameters through oauth.

2015-12-21 Thread James Andrews
Hello, Our application requires me to pass 3 parameters through auth that get processed on the return. Using the Google API for Youtube I am able to use the setState function and pass a base64 encoded string as the state. I am trying to figure out how I would do that with the Adwords API, but

Re: Need clarity on Ad Customizer

2015-12-21 Thread Yin Niu
Hi Kainesh, On the AdWords Community Page, you can register by clicking the "Register" button. Thanks, Yin, AdWords API Team. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+Goog

Re: Receive data using the AdWords API

2015-12-21 Thread Yin Niu
Hello, Yes, you can choose the client library for the language you prefer. There are code examples you can try. Please read the AdWords API Get Started guide to get started. Thanks, Yin, AdWords API Team. -- -- =~=~=~=~=~=~=~=

Re: batch job service giving operand and error message both as null

2015-12-21 Thread Kainesh Patel
Hi Josh, As you have mentioned, BatchJobHelper depends on XML utilities which may or may not be present in JRE. Can you file a ticket/bug or discuss with dev team to include this libraries in google adwords api jar? Thanks, Kainesh On Thursday, November 19, 2015 at 12:39:01 AM UTC+5:30, Josh R

Is it possible to download reports for multiple adwords accounts in one api call

2015-12-21 Thread Garv Parmar
Hi, I just want to know the reason behind not allowing users to download reports of multiple accounts in one API call. Is there any kind of limitation or kind of best practice for which google is not allowing users for the same? Thanks. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

How to increase rate limit for creating merchant center subaccounts?

2015-12-21 Thread chris . carlson
I have a multi-client account with Google Merchant Center because saatchiart.com is a marketplace (for fine art) in the same way that etsy.com is a marketplace. We are looking to create a separate subaccount for each artist on our platform with eligible items for the Google Merchant Center. We

for the same AdGroupId,CampaignId,Date i get more then one row VIDEO_PERFORMANCE_REPORT

2015-12-21 Thread barak . kedem
Hi, i am trying to download this report ReportDefinitionReportType.VIDEO_PERFORMANCE_REPORT but something is very weird: the data is NOT being aggregated for the same AdGroupId,CampaignId,Date i get more then one row. and while using the ui of google ad word (website) there is only one row fo

Exact match keywords in Keywords Performance Report

2015-12-21 Thread Ney Pimenta
Hi, I'm not getting exact match keywords from the Criteria column in the Keywords Performance report. I'm using AWQL to fetch Criteria and some other columns, only filtering by date. Any clues? And what is the difference between Criteria and Keywords? Thanks, Ney -- -- =~=~=~=~=~=~=~=~=~=

Error: error:0307A071:bignum routines:BN_rand_range:too many iterations

2015-12-21 Thread Leonardo Mejia
I am getting Error: error:0307A071:bignum routines:BN_rand_range:too many iterations when trying to refresh token on a XAMPP install on my machine: The error seems to be occuring here:

Re: Feed item disapproved

2015-12-21 Thread Thanet Knack Praneenararat (AdWords API Team)
Hello Siva, Thanks for your screenshot and code snippet. I now understand more what you're trying to do. In short, my answer is still the same: there exist no attribute that has type URL_LIST in ad customizer placeholder type

Matching function in ad customizer is not working

2015-12-21 Thread Kainesh Patel
Hi, I want to try ad customizer. I created feed and added 2 feedItems. One feedItem has Name as ITC and another Name as HUL. Now, I am mapping campaign to feed with matching function as EQUALS(FeedAttribute[32350825,1],"HUL"). Then I created a new ad with headline as 'headline{=MyFrstFeed556.N

Re: Feed item disapproved

2015-12-21 Thread Siva Arasu
Hey Thanet, yes, my question is more close to domainName. In this case campaigns, adgroups and ads are already created with the adcustomizer templates and we are just updating the feed in timely interval. The auto targeting in the DSA campaigns is based on the custom label in data feed.( cust

Re: Receive data using the AdWords API

2015-12-21 Thread 정재엽
https://developers.google.com/adwords/api/docs/clientlibraries <- Using a Client Library can get the data I want to get easier? If you let me know how . Thanks. 2015년 12월 18일 금요일 오후 11시 49분 6초 UTC+9, Yin Niu 님의 말: > > Hello, > > You could use AdWords Reports >