Search code examples
node.jsgoogle-feed-api

Google feed api in a nodejs application?


I have a php application that uses the google feed api to get the feeds I want and display them. I was wondering how can I call the google feed api from a nodejs application ?


Solution

  • Use node's http.request() (or the shortcut version http.get()) functionality; that's conceptually the same thing you must be currently doing in PHP.

    You might find that installing and using Mikeal's request module would make things even simpler.