1
我有以下設置的API VERSION1將通過中間件驗證令牌的NodeJS - 設置不同的API版本
var app = express();
// Auth Middleware - This will check if the token is valid
// Only the requests that start with /api/version1/* will be checked for the token.
// Any URL's that do not follow the below pattern should be avoided unless you
// are sure that authentication is not needed
app.all('/api/version1/*', [require('./middleWare/validateMyRequest')]);
app.use('/', require('./myModal'));
app.all('/*', function(req, res) {
res.sendFile('/public/index.html', { root: __dirname });
});
在這裏,我要設置在服務器configuation另一個API版本2中,我不需要驗證令牌使用中間ware.I已嘗試以下配置
app.use('/api/version2/*', require('./myModal'));
當我嘗試與API版本2的baseurl。它總是驗證令牌並重定向到登錄頁面。請告知我在這裏想要設置API版本2?