diff --git a/twitter.js b/twitter.js index 0fc0175..d349ef4 100644 --- a/twitter.js +++ b/twitter.js @@ -16,7 +16,8 @@ var Twitter = function(options) { this.callback = options.callback; this.oa = new oauth.OAuth("https://twitter.com/oauth/request_token", "https://twitter.com/oauth/access_token", - this.consumerKey, this.consumerSecret, "1.0A", this.callback, "HMAC-SHA1"); + this.consumerKey, this.consumerSecret, "1.0A", this.callback, "HMAC-SHA1", + undefined, { 'Connection': 'Keep-Alive' }); return this; }