NbAuthModule.forRoot({
strategies: [
NbPasswordAuthStrategy.setup({
name: 'auth',
token: {
class: NbAuthJWTToken,
key: 'token',
},
baseEndpoint: '/api/',
login: {
alwaysFail: false,
endpoint: 'Login',
method: 'get',
redirect: {
success: '/pages',
failure: '/register',
},
},
register: {
endpoint: 'register',
method: 'post',
},
}),
],
forms: {
login: {
redirectDelay: 0, // delay before redirect after a successful login, while success message is shown to the user
strategy: 'auth', // strategy id key.
rememberMe: false, // whether to show or not the `rememberMe` checkbox
showMessages: { // show/not show success/error messages
success: false,
error: true,
}, // social links at the bottom of a page
},
},
}),
У меня есть Создать пароль Стратегия для вызова моего проекта Asp.net Web Api. Я также настроил прокси-сервер, как указано ниже
{
"/api": {
"target": "http://localhost:54575",
"secure": false
}
}
Ожидаемое поведение: я ожидал, что он вызовет мой APIи верните токен авторизации и измените URL на панель мониторинга, но его URL не меняется.