react steam auth

Solutions on MaxInterview for react steam auth by the best coders in the world

showing results for - "react steam auth"
Maja
24 Sep 2020
1passport.use(new SteamStrategy({    returnURL'http://localhost:3000/auth/steam/return',    realm'http://localhost:3000/',    apiKey'your steam API key'  },  function(identifier, profile, done{    User.findByOpenID({ openId: identifier }, function (err, user{      return done(err, user);    });  }));