Skip to content

Commit

Permalink
Use IP address instead of localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobi committed Oct 24, 2014
1 parent daf3ccd commit 9f610fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/login/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ passport.deserializeUser(function(obj, done) {
passport.use(new XingStrategy({
consumerKey: XING_API_KEY,
consumerSecret: XING_SECRET_KEY,
callbackURL: "http://localhost:" + app.get('port') + "/auth/xing/callback"
callbackURL: "http://127.0.0.1:" + app.get('port') + "/auth/xing/callback"
},
function(token, tokenSecret, profile, done) {
// asynchronous verification, for effect...
Expand Down

0 comments on commit 9f610fe

Please sign in to comment.