Can Delibas

Results 2 comments of Can Delibas

Great to hear it! Is there any hacky way to use it for our Ionic 2 project before you rewrite it?

Sure. Here are related parts. initialization: ``` app.use(steam.middleware({ realm: `http://localhost:5000`, verify: `http://localhost:5000/verify`, apiKey: config.STEAM_API_KEY })); ``` authenticate: ``` app.get('/auth', steam.authenticate(), function (req, res) { res.redirect('/'); }); ``` verify part: ```...