Node.js: How to Access the Google AdWords API

Is there a way to use node.js to log in to my google adwords account?

thanks

+2
source share
3 answers

I am the author of the unofficial node.js client library for AdWords: https://www.npmjs.com/package/googleads-node-lib . Every day it gets closer to a fully functional client library. Welcome to welcome.

+1
source

Yes, the library uses standard Javascript (it is built using the Google Closure library). You may need to write an HttpWebTransport adapter that works for Node.js. http://code.google.com/p/google-api-adwords-js/source/browse/#svn%2Ftrunk%2Fjs%2Fsystem%2Fsrc%2Fgoogle%2Fsystem%2Fnet contains some examples for specific techniques, such as gadgets Google, Chrome extensions, etc., but for Node there are none. JS. Also see http://code.google.com/p/google-api-adwords-js/source/browse/trunk/js/adwordsapi/src/config.js for details on how to configure the library to use a specific HttpWebTransport class.

Cheers, Anash

0
source

I don't know much about node.js, but if it uses standard JavaScript, you can find somewhere the new AdWords API JavaScript library: http://code.google.com/p/google-api-adwords-js/

-2
source

All Articles