Restberry Passport wrapper for passport-twitter.
npm install restberry-passport-twitter
var restberryPassport = require('restberry-passport');
var auth = restberryPassport.config(function(auth) {
...
})
.use('twitter', {
consumerKey: ...,
consumerSecret: ...,
callbackHost: ...,
returnURL: ...,
});
restberry.use(auth);
Two new routes have been created to the User:
- GET /login/twitter
- GET /login/twitter/callback
You can't retrieve the email address from the Twitter API so right now it can't be matched with an already existing account. Since the email is a required field the email is set to the twitter username + '@restberry.com'.
The tests require you to have the node test app running on port 6000 and the the index.html test file accessable at port 6001 on your localhost. There is an nginx-conf file that is setup for this in the test directory. Then simply run:
npm test