Re: How get CustomerId with OAuth 2.0

2015-04-01 Thread Marcin Gdak
Hmm I am getting Idas but only then when the same I have written down in webconfig. If it is different I am getting the error AuthorizationError.USER_PERMISSION_DENIED. My code in C# CustomerService customerservice = (CustomerService)user.GetService(AdWordsService.v201502.CustomerService);

How to Get Campaign Data in C# Grid

2015-04-01 Thread Pravin Yadav
Hi I am using *Google.Api.Ads.AdWords.v201406* with dot.net code and getting campaign using CampaignService. But I am getting error. ***Failed to get campaigns. Exception says The request failed with HTTP status 404: Not Found.***. Please see in line of code for error with Red mark. Is

Unable to retrieve Total Conversion Value in Campaign Performance Report

2015-04-01 Thread Vishal Chawla
Hi, I am using *Google.Api.Ads.AdWords.*v201409 with PHP to get *Total Conversion Value* for *Campaign Performance Report.* As per this https://developers.google.com/adwords/api/docs/appendix/reports/campaign-performance-report doc, when I pass field name as totalConvValue, I get following

Re: Report download using HTTPClient still gives an Error Missing client information

2015-04-01 Thread Michael D
Solved :) var client = new HttpClient(); var postRequest = this.ConstructPostRequest(); var content = new StringContent(postRequest, Encoding.UTF8, application/x-www-form-urlencoded); var request = new HttpRequestMessage(HttpMethod.Post,

Re: adwords 201502 release

2015-04-01 Thread Josh Radcliff (AdWords API Team)
Hi, The client library changes to support this new header are not yet available, but we plan to release a new version of the library soon with this feature. Thanks, Josh, AdWords API Team On Wednesday, April 1, 2015 at 8:24:29 AM UTC-4, pradeep s wrote: Hi, In latest api release notes its

Re: How get CustomerId with OAuth 2.0

2015-04-01 Thread Marcin Gdak
It works for me. Thanks for the helpful tips. W dniu wtorek, 31 marca 2015 21:35:51 UTC+2 użytkownik Nadine Sundquist (AdWords API Team) napisał: Hello Marcin, Once you've authenticated, you can retrieve the current customer id from the Customer Service

INVALID_OAUTH_TOKEN_FOR_EMAIL

2015-04-01 Thread cvit sandeep
Hi Adwords Team, When trying to implement AddGoogleMyBusinessLocationExtensions we get the following error. [FeedError.INVALID_OAUTH_TOKEN_FOR_EMAIL @ operations[0].operand.systemFeedGenerationData.oAuthInfo; trigger:'Invalid token'] We already checked the email is matching with Adword UI.

adwords 201502 release

2015-04-01 Thread pradeep s
Hi, In latest api release notes its mentioned that there is support for new header attribute(skipColumnHeader) to suppress column headers. But the latest client library available in maven(1.38.0) dont have the corresponding field in ReportingConfiguration.java Can you please confirm whether the

Re: Can't find a way to get number of clicks, using Selector Fields

2015-04-01 Thread Samuel Otero
Thank you so much for your help. Now I am finally able to retrieve what I need. I will be opening another thread with a question about the reports itself. - Sam On Monday, March 30, 2015 at 11:15:16 PM UTC-4, Thanet Knack Praneenararat (AdWords API Team) wrote: Hi, Please review this page

Re: ConversionTrackerService get call returning duplicate data

2015-04-01 Thread HK
Josh, Hate to keep nagging you about this, but would you be able to give us an ETA for when this might get addressed? Thanks, Hans -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/

Re: How get CustomerId with OAuth 2.0

2015-04-01 Thread Nadine Sundquist (AdWords API Team)
Hi Marcin, If you don't put a clientCustomerId in your web.config, then the clientCustomerId passed back from the Customer object is the clientCustomerId related to your OAuth credentials. Based on your explanation and the error that is being returned, it sounds like you may be trying to

Re: ConversionTrackerService get call returning duplicate data

2015-04-01 Thread HK
Great, thanks for the udpate! -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message

How do I extract report data of more than one client in the same .csv file??

2015-04-01 Thread Samuel Otero
Greetings Right now, I am able to retrieve data for campaigns, extracting reports using the .NET solution of your examples.

Re: How get CustomerId with OAuth 2.0

2015-04-01 Thread Marcin Gdak
Hi Nadine, If I don't put a clientCustomerId in my web.config, then OAuth is returning the error CustomerID is required. I am using the help given on the side https://github.com/googleads/googleads-dotnet-lib/wiki/Using-OAuth2 In section Scope I have link to Adwords. In settings the user

Re: How to Get Campaign Data in C# Grid

2015-04-01 Thread Josh Radcliff (AdWords API Team)
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 running the example, e.g., confirm that you can download the WSDL at

Re: ConversionTrackerService get call returning duplicate data

2015-04-01 Thread Josh Radcliff (AdWords API Team)
Hi Hans, Pending testing of the new version, we're planning to have a fix for this in by next Monday (April 6). I'll let you know if that plan changes. Thanks, Josh, AdWords API Team On Wednesday, April 1, 2015 at 11:49:12 AM UTC-4, HK wrote: Josh, Hate to keep nagging you about this, but

Re: Unable to retrieve Total Conversion Value in Campaign Performance Report

2015-04-01 Thread Josh Radcliff (AdWords API Team)
Hi, From the error message you supplied, it looks like you are passing the *XML attribute* of the field rather than the *Name* from the first column of the report documentation https://developers.google.com/adwords/api/docs/appendix/reports#campaign. In this case, instead of passing *total

Re: INVALID_OAUTH_TOKEN_FOR_EMAIL

2015-04-01 Thread Josh Radcliff (AdWords API Team)
Hi Sandeep, That error means that the access token you included in PlacesLocationFeedData.oAuthInfo https://developers.google.com/adwords/api/docs/reference/v201502/FeedService.PlacesLocationFeedData#oAuthInfo is revoked or expired or is not for the user you specified in the emailAddress

Re: How do I extract report data of more than one client in the same .csv file??

2015-04-01 Thread Josh Radcliff (AdWords API Team)
Hi, You can only run a given report or submit a SOAP service request for one AdWords account at a time. If you need to combine reports from multiple accounts, you'll have to change the customer ID programmatically and run a separate report per account

Re: How get CustomerId with OAuth 2.0

2015-04-01 Thread Nadine Sundquist (AdWords API Team)
Hello, You can pick from one of the two options depending on what you need. *Option 1* - *Use Case:* You want to store your *clientCustomerId* in your web.config, and you want to retrieve it at runtime. - *Solution:* Check out this wiki post