I had to added the following after line 163 in oauth2.js (method getOAuthAccessToken) to get Reddit to work: ``` 'Authorization' : 'Basic ' + new Buffer(this._clientId + ':' + this._clientSecret).toString('base64') , ``` This header addition did not seem to break Instagram or Google Oauth2.