RE: Web Service

2020-01-23 Thread Google Ads API Forum Advisor Prod
Hi Alex, Thank you for reaching out. You would be able to use Adwords API to query the data you need and then use these data on a third party platform or in other web services. However, in order to fetch data through the API you have to use the libraries provided for the Adwords API. You could

Web Service

2020-01-23 Thread ALEX TULA
Hello! I wanted to ask a question. I started learning the Google AdWords API, can I use the API data on the Spring WebFlux reactor? Can I not use the library provided for this api, but work with api otherwise? Many thanks! -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on

Re: API / web service call to add customers to customer list

2019-04-11 Thread Scott Blau
delay in its receipt. From: on behalf of "mark.elf...@imimobile.com" Reply-To: "mark.elf...@imimobile.com" Date: Thursday, April 11, 2019 at 6:38 AM To: AdWords API and Google Ads API Forum Subject: Re: API / web service call to add customers to customer list I think yo

Re: API / web service call to add customers to customer list

2019-04-11 Thread mark . elford
ogle.com/google-ads/answer/6276125?hl=en&ref_topic=6296507 > > Does anybody know which API / web service call I can use to automate? > > Thanks in advance, > Scott > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: ht

API / web service call to add customers to customer list

2019-04-11 Thread sblau
I would like to add customers to a customer list in real time when certain events happen in my CRM using an iPaaS. This article explains how to upload a list manually: https://support.google.com/google-ads/answer/6276125?hl=en&ref_topic=6296507 Does anybody know which API / web service ca

Re: How to regenerate Tokens and save to database table (when application as a Web Service)

2015-08-05 Thread Pravin Yadav
ved oAuth.RefreshToken, oAuth.AccessToken, oAuth.UpdatedOn >> and oAuth.ExpiresIn in database table and used in my asp.net web service >> now it working properly >> >>But this web service i want use in scheduler it works background, >> so after expi

Re: How to regenerate Tokens and save to database table (when application as a Web Service)

2015-07-20 Thread Anash P. Oommen (AdWords API Team)
AM UTC-4, Pravin Yadav wrote: > > Hi, > >I done with ASP.Net Service get data from offline adwords accounts. > >i saved oAuth.RefreshToken, oAuth.AccessToken, oAuth.UpdatedOn and > oAuth.ExpiresIn > in database table and used in my asp.net web service no

How to regenerate Tokens and save to database table (when application as a Web Service)

2015-07-16 Thread Pravin Yadav
Hi, I done with ASP.Net Service get data from offline adwords accounts. i saved oAuth.RefreshToken, oAuth.AccessToken, oAuth.UpdatedOn and oAuth.ExpiresIn in database table and used in my asp.net web service now it working properly But this web service i want use in

Re: Offline Access AdWords Account Data for making Asp.Net Web Service

2015-06-09 Thread Pravin Yadav
Hi Anash, Thanks for your & Mr. Josh's suggestions. finally done my web service with offline authentication. Thank u so much. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Googl

Re: Offline Access AdWords Account Data for making Asp.Net Web Service

2015-06-08 Thread Anash P. Oommen (AdWords API Team)
y value if needed for > offline account access > and what is flow of that. > >Please reply. > > > On Friday, May 15, 2015 at 1:14:38 AM UTC+5:30, Anash P. Oommen (AdWords > API Team) wrote: >> >> Hi Pravin, >> >> it simply saves th

Re: Offline Access AdWords Account Data for making Asp.Net Web Service

2015-06-05 Thread Pravin Yadav
eeded for offline account access and what is flow of that. Please reply. On Friday, May 15, 2015 at 1:14:38 AM UTC+5:30, Anash P. Oommen (AdWords API Team) wrote: > > Hi Pravin, > > it simply saves the access and refresh tokens into a database. > > -

Re: Offline Access AdWords Account Data for making Asp.Net Web Service

2015-05-14 Thread Anash P. Oommen (AdWords API Team)
Hi Pravin, I think the problem is with the way you designed your service. ASMX page (or rather a WebMethod) is the wrong place to send the user through a redirect. I'm assuming that you'd need to authenticate the user AND have a web service that you can call from other applicatio

Re: Offline Access AdWords Account Data for making Asp.Net Web Service

2015-05-12 Thread Pravin Yadav
On Wednesday, May 13, 2015 at 10:35:45 AM UTC+5:30, Pravin Yadav wrote: > > > Hi.. >>> >>> In detail about errors. > *When i >>> using HttpContext.Current.Response.Redirect(oAuth.GetAuthorizationUrl()); >>> //access_type is not offline that time getting following error at same

Re: Offline Access AdWords Account Data for making Asp.Net Web Service

2015-05-12 Thread Pravin Yadav
> Hi.. >> >> >> >> *Consuming Service* >> >> localhost.MaiaAdWordsService service = new >> localhost.MaiaAdWordsService(); >> >> DataTable dt = new DataTable(); >> >> dt = service.AuthonticationConfig();//Getting Error at >> here.. >> Gdv_Te

Re: Offline Access AdWords Account Data for making Asp.Net Web Service

2015-05-12 Thread Josh Radcliff (AdWords API Team)
Hi Pravin, What is the error you get when you hit the line of code you highlighted? Thanks, Josh, AdWords API Team On Tuesday, May 12, 2015 at 3:09:17 AM UTC-4, Pravin Yadav wrote: > > Hi, > Yes i had used access_type=offline like below > > HttpContext.Current.Response.Redirect(" > https://accou

Re: Offline Access AdWords Account Data for making Asp.Net Web Service

2015-05-12 Thread Pravin Yadav
Hi, Yes i had used access_type=offline like below HttpContext.Current.Response.Redirect(" https://accounts.google.com/o/oauth2/auth?scope=https%3a%2f%2fwww.googleapis.com%2fauth%2fadwords&state=callback&redirect_uri=http%3a%2f%2flocalhost%3a1366%2fOAuthLogin.aspx&response_type=code&client_id=45169

Re: Offline Access AdWords Account Data for making Asp.Net Web Service

2015-05-11 Thread Raghavendra Soudala (AdWords API Team)
sk the user to prompt every time. I hope this resolves your problem if not let me know. Cheers, Raghavendra, AdWords API Team. On Monday, May 11, 2015 at 7:18:22 AM UTC-4, Pravin Yadav wrote: > > Hi, > > I am trying to access AdWords account data from asp.net web service. >

Offline Access AdWords Account Data for making Asp.Net Web Service

2015-05-11 Thread Pravin Yadav
Hi, I am trying to access AdWords account data from asp.net web service. but getting problem when consuming web service that time also need to accept account permissions from service so that time we can`t open permission page. i need of offline Access permissions without visit permission page

Re: AdWords Data Get Through Web Service

2015-05-05 Thread Raghavendra Soudala (AdWords API Team)
=callback&redirect_uri=http%3a%2f%2flocalhost%3a25232%2fMaiaAdWordsService.asmx&response_type=code&client_id=4516991244-33c20b7an0j8m1e1gtin9mr2l9vc46vr.apps.googleusercontent.com&access_type=offline>">here.* > > > *i.e. Request is failed (Account Permissio

Re: AdWords Data Get Through Web Service

2015-05-05 Thread Pravin Yadav
mp;state=callback&redirect_uri=http%3a%2f%2flocalhost%3a25232%2fMaiaAdWordsService.asmx&response_type=code&client_id=4516991244-33c20b7an0j8m1e1gtin9mr2l9vc46vr.apps.googleusercontent.com&access_type=offline";>here.* *i.e. Request is failed (Account Permissions failed) error is

Re: AdWords Data Get Through Web Service

2015-05-04 Thread raghavendra soudala
for instructions on setting up your project. Cheers. Raghavendra, AdWords API Team. On Monday, May 4, 2015 at 2:03:25 AM UTC-4, Pravin Yadav wrote: > > Hi, > > can i get AdWords data from asp.net web service. > > if yes then what about authentication perm

AdWords Data Get Through Web Service

2015-05-03 Thread Pravin Yadav
Hi, can i get AdWords data from asp.net web service. if yes then what about authentication permission page. how to store OAuth Permissions. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https

Re: Specify web service email/password outside of app.config?

2012-03-02 Thread Kevin Winter
t.NetworkCredential object and setting the > Credential of ServicedAccountService. However, it still defaults to the > email/password value in the app.config file. > > I've unsuccessfully attempted to find a code sample or documentation > indicating how I can specify the web s

Specify web service email/password outside of app.config?

2012-03-02 Thread Tim Mitchell
27;ve unsuccessfully attempted to find a code sample or documentation indicating how I can specify the web service authentication email/password at runtime. What am I missing here? Thanks, Tim Mitchell -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and di

Re: Google Report Definition Web Service

2012-02-14 Thread Orlando
Hi Anash, I follow you advise and check for the .net library and got the following error: Failed to create accounts. Exception says "{0}"An API exception has occurred. See ApiException and InnerException fields for more details. Please see my code below and the web.config file. Try D

Re: Google Report Definition Web Service

2012-02-13 Thread Anash P. Oommen
Hi Orlando, I suspect the problem is a variant of the one listed here: http://code.google.com/p/google-api-adwords-dotnet/wiki/NoClientLibrary#a._Xml_namespace_collision_between_class_and_System.Web.Services. Could you post the sanitized SOAP request and response xmls here? You could setup Fid

Re: Google Report Definition Web Service

2012-02-13 Thread Orlando
This is the error: Failed to create accounts. Exception says...Missing SoapHeader while invoking public abstract java.util.List com.google.ads.api.services.mcm.createaccount.CreateAccountService.mutate(java.util.List) throws com.google.ads.api.services.common.error.ApiException with params [[com.g

Re: Google Report Definition Web Service

2012-02-13 Thread Orlando
Hi Anash, Thanks! I added the authToken to the code, that part is solved. However, now it seems that the SOAP is not correct. Could you please help yo find what I'm missing? It gave an error in the line "AccountNew = createAccountService.mutate(New GoogleCreateAccountServiceSandbox.CreateAccountO

Re: Google Report Definition Web Service

2012-02-12 Thread Anash P. Oommen
Hi Orlando, You need to mention the authToken header as well. See http://code.google.com/p/google-api-adwords-dotnet/wiki/NoClientLibrary#Getting_an for details on how to get an authToken. Also, it might be worthwhile investigating whether you can use the .NET library instead of writing your

Google Report Definition Web Service

2012-02-10 Thread Orlando
Hello, I'm working on a web application (Microsoft Visual Web Developer Express, vb.net, asp.net) and I would like to add AdWords reports to it. I add the ReportDefinitionService web service to my web services and use the code below to test the connection with Google. However, I obtaine

AdWords API Re: Adding web service to Excel

2010-04-09 Thread Andy Precise
CFJ, thank you very, very much. the second solution worked perfectly. On Apr 8, 4:12 pm, CFJ wrote: > This error is caused by an XML namespace issue between the SoapHeader > class and System.Web.Services.Protocols.SoapHeader.  The issue is > discussed here: > > http://code.google.com/p/google-api

AdWords API Re: Adding web service to Excel

2010-04-08 Thread CFJ
This error is caused by an XML namespace issue between the SoapHeader class and System.Web.Services.Protocols.SoapHeader. The issue is discussed here: http://code.google.com/p/google-api-adwords-dotnet/wiki/NoClientLibrary One solution is to utilize the client libraries. Another solution is dis

AdWords API Adding web service to Excel

2010-04-08 Thread Andy Precise
Hi, i've been making progress migrating from v13 to v200909. my existing "Excel" project crashed and corrupted itself in the process. so i started again from a backed up copy of the project (which only uses v13). the problems start when i add in the v2009 webservice (via the URL); i get

AdWords API Re: Web service operation "addAdGroup" could not be found

2009-01-07 Thread AdWords API Advisor
t does not seem to run. > > Can anyone confirm that the addAdGroup method in the AdGroup service > is running in Sandbox? > > Thx > > On Jan 7, 9:25 am, purdue512 wrote: > > > Can anyone help on this? I've dumped in several days and am totally > > stuck here

AdWords API Re: Web service operation "addAdGroup" could not be found

2009-01-07 Thread purdue512
ed in several days and am totally > stuck here. Thx > > On Jan 6, 5:59 pm, purdue512 wrote: > > > I'm getting Web service operation "addAdGroup" could not be found back > > from the AdGroupService. I am submitting the following structure (with > >

AdWords API Re: Web service operation "addAdGroup" could not be found

2009-01-07 Thread purdue512
Can anyone help on this? I've dumped in several days and am totally stuck here. Thx On Jan 6, 5:59 pm, purdue512 wrote: > I'm getting Web service operation "addAdGroup" could not be found back > from the AdGroupService. I am submitting the following structure (with &

AdWords API Web service operation "addAdGroup" could not be found

2009-01-06 Thread purdue512
I'm getting Web service operation "addAdGroup" could not be found back from the AdGroupService. I am submitting the following structure (with nested structure) - which looks find to me when I dump it. AdGroup = StructNew(); AdGroup.campaignID = '3943'; Ad

AdWords API Re: impression value does not match between adwoard web service api and adwords.google.com web page

2008-10-13 Thread AdWords API Advisor
s > > > > > not the same as the one defined in adwords, you're not looking the > > > > > same stats :) > > > > > > Laurent > > > > > > hhwang a écrit : > > > > > > > Please provide answers or suggestions for this

AdWords API Re: impression value does not match between adwoard web service api and adwords.google.com web page

2008-10-11 Thread timprepscius
> > > I need to explain our customer what happen with his data. > > > > > > Thanks, > > > > > > Hosung > > > > > > On Oct 8, 1:01 pm, hhwang <[EMAIL PROTECTED]> wrote: > > > > > > Hi, Adwords > > &g

AdWords API Re: impression value does not match between adwoard web service api and adwords.google.com web page

2008-10-10 Thread hhwang
what happen with his data. > > > > > Thanks, > > > > > Hosung > > > > > On Oct 8, 1:01 pm, hhwang <[EMAIL PROTECTED]> wrote: > > > > > Hi, Adwords > > > > > > my client's adwords.g

AdWords API Re: impression value does not match between adwoard web service api and adwords.google.com web page

2008-10-10 Thread Laurent
lient's adwords.google.com web access user name is > > > > "[EMAIL PROTECTED]". > > > > > I was looking at Campaign Summay report on the date of O

AdWords API Re: impression value does not match between adwoard web service api and adwords.google.com web page

2008-10-10 Thread hhwang
;. > > > > I was looking at Campaign Summay report on the date of Oct 6, 2008. > > > >https://adwords.google.com/select/CampaignSummary?campaignid=&adgroup... > > > > In the report, you will see a huge discrepancy in the stats between > > > Adword Web pag

AdWords API Re: impression value does not match between adwoard web service api and adwords.google.com web page

2008-10-09 Thread Laurent
> > I was looking at Campaign Summay report on the date of Oct 6, 2008. > > > > https://adwords.google.com/select/CampaignSummary?campaignid=&adgroup... > > > > In the report, you will see a huge discrepancy in the stats between > > Adword Web page and Web Service API:

AdWords API Re: impression value does not match between adwoard web service api and adwords.google.com web page

2008-10-09 Thread hhwang
OTECTED]". > > I was looking at Campaign Summay report on the date of Oct 6, 2008. > > https://adwords.google.com/select/CampaignSummary?campaignid=&adgroup... > > In the report, you will see a huge discrepancy in the stats between > Adword Web page and We

AdWords API impression value does not match between adwoard web service api and adwords.google.com web page

2008-10-08 Thread hhwang
e&timeperiod.begin.month=10&timeperiod.begin.day=6&timeperiod.begin.year=2008&timeperiod.begin.dateField=Oct+5,+2008&timeperiod.end.month=10&timeperiod.end.day=6&timeperiod.end.year=2 In the report, you will see a huge discrepancy in the stats between Adword Web page and We