Answer the question
In order to leave comments, you need to log in
How to implement facebook or vk authorization in vue?
Good afternoon.
Can you please tell me how to properly organize authorization in vue?
More precisely, do I have the authorization organized correctly and why in some browsers (IE11 or Safari) after authorization, it is required to refresh the page.
let apiHost = 'http://domain.com';
let getOptions = {
credentials: 'same-origin',
redirect: 'follow'
};
let store = function() {
return {
user: {},
};
};
vm = new Vue({
el: '#app',
data: store,
mounted: function () {
this.getUserInfo(); // запрос к серверу и проверка авторизованности
},
methods: {
// авторизован ли пользователь
getUserInfo: function() {
let url = apiHost + '/get-user-info';
fetch(url, getOptions)
// ...
.then(function(res) {
if (!res.error) {
vm.$set(vm, 'user', res.data.user);
return Promise.resolve(res);
} else {
return Promise.reject(new Error(res.message));
}
})
.then(function(res) {
if (res.data.user.id !== undefined) {
// пользователь авторизовался, что-то делаем дальше...
} else {
// пользователь НЕ авторизовался, что-то делаем дальше...
}
})
.catch(function(err) {
// обработка ошибки
});
},
// переход на страницу авторизации
loginVK: function (){
let url = apiHost + '/ready'; // жив ли сервер?!...
fetch(url, getOptions)
// ...
.then(function() {
window.location = apiHost + '/vkAuth'; // если жив, идем дальше
})
.catch(function(err) {
// обработка ошибки
});
}
}
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question