Is there any way for the Google App Engine's urlfetch to open and keep open a Twitter Streaming API connection? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T05:13:41Z http://stackoverflow.com/feeds/question/972781 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/972781/is-there-any-way-for-the-google-app-engines-urlfetch-to-open-and-keep-open-a-twi 1 Is there any way for the Google App Engine's urlfetch to open and keep open a Twitter Streaming API connection? ehfeng 2009-06-09T22:18:52Z 2009-06-10T09:28:41Z <p>The Twitter streaming api says that we should open a HTTP request and parse updates as they come in. I was under the impression that Google's urlfetch cannot keep the http request open past 10 seconds.</p> <p>I considered having a cron job that polled my Twitter account every few seconds, but I think Google AppEngine only allows cron jobs once a minute. However, my application needs near-realtime access to my twitter @replies (preferably only a 10 second or less lag).</p> <p>Are there any method for receiving real-time updates from Twitter?</p> <p>Thanks!</p> http://stackoverflow.com/questions/972781/is-there-any-way-for-the-google-app-engines-urlfetch-to-open-and-keep-open-a-twi/973062#973062 0 Answer by John Weldon for Is there any way for the Google App Engine's urlfetch to open and keep open a Twitter Streaming API connection? John Weldon 2009-06-09T23:47:12Z 2009-06-09T23:47:12Z <p>I'm curious.</p> <p>Wouldn't you want this to be polling twitter on the client side? Are you polling your public feed? If so, I would decentralize the work to the clients rather than the server...</p> http://stackoverflow.com/questions/972781/is-there-any-way-for-the-google-app-engines-urlfetch-to-open-and-keep-open-a-twi/974562#974562 1 Answer by Nick Johnson for Is there any way for the Google App Engine's urlfetch to open and keep open a Twitter Streaming API connection? Nick Johnson 2009-06-10T09:28:41Z 2009-06-10T09:28:41Z <p>Unfortunately, you can't use the urlfetch API for 'hanging gets'. All the data will be returned when the request terminates, so even if you could hold it open arbitrarily long, it wouldn't do you much good.</p> <p>Have you considered using <a href="http://www.gnip.com/" rel="nofollow">Gnip</a>? They provide a push-based 'web hooks' notification system for many public feeds, including Twitter's public timeline.</p>