Jerome, Both the API and the JavaScript ecosystem have changed drastically since 2011. I would think you might have a better chance starting over fresh at this point using a node module to integrate with the AdWords SOAP services directly.
This one looks pretty stable and recently maintained : https://github.com/vpulim/node-soap I have general reservations about node as a platform for running an AdWords integration on. It is very typical to have long running operations when working with AdWords and to handle integration of very large datasets which is not something I typically think of as a use case for node. Additionally, an online marketing firm of any size would require things like overnight batch processing, data integration, secondary analytics and unified reports. These are things that have lots of support in more traditional enterprise platforms like Java which already has a client library for AdWords. Node is amazing at very high throughput of small messages, but it seems people have lots of headaches any time they want to do heavy, necessarily concurrent processing. That being said we use node at my day job and have been looking for a reason to get back into coding for AdWords. I would be willing to contribute to an opensource project like this with you. On Thursday, August 28, 2014 11:49:54 AM UTC-4, Jerome Wagner wrote: > > Hello, > > I understand that my best bet if I want to access the adwords API from > node.js is to dig into the old > https://code.google.com/p/google-api-adwords-js/ that used to work on the > browser and adapt it > * for node.js (it seems that goog. has been adapted for node.js in 2013) > * for the newer v201406 API > > how hard do you think that would be ? > > are there any plans to retrofit the adwords API into the google api > discovery service so that I could use its node.js client implementation ? > > -- > Jerome > > Le mardi 8 avril 2014 15:25:41 UTC+2, Danial Klimkin a écrit : >> >> Hello Rasmus, >> >> >> No, we don't have any plans for JS library at the moment. >> >> >> -Danial, AdWords API Team. >> >> >> On Monday, April 7, 2014 11:44:37 PM UTC+4, Rasmus Ladekjær Pedersen >> wrote: >>> >>> Hi there, >>> >>> do you have any plans for a JavaScript library? >>> >>> With all the Node.js going on, I believe we are a lot wanting a >>> JavaScript library for the Google AdWords API. >>> >> -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 [email protected] To unsubscribe from this group, send email to [email protected] 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 [email protected]. Visit this group at http://groups.google.com/group/adwords-api. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/9e3ce795-d4ad-4c32-b96b-05e45fca8075%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
