Steam authentication with Angular
问题 I'm trying to do authentication with Steam from the home page in Angular but whenever I click on button (which has (click) event pointing at login() function in AppComponent ), instead of being redirected to Steam page, current page is refreshed and nothing happens. This is server-side code: 'use strict'; const express = require('express'); const app = express(); const server = require('http').createServer(app); const io = require('socket.io').listen(server); const jwt = require('express-jwt'