Я создаю Android приложение с использованием Ioni c. И используя следующее feathers_client. js
const feathers = require('@feathersjs/feathers');
const socketio = require('@feathersjs/socketio-client');
const auth = require('@feathersjs/authentication-client');
const io = require('socket.io-client');
const socket = io('http://mydomain.example:3030');
const feathers_client = feathers();
feathers_client
.configure(socketio(socket))
.configure(auth({ storage: window.localStorage }));
module.exports = feathers_client;
Когда я запускаю приложение в браузере, оно работает нормально. Но когда я запускаю его на устройстве Android, я получаю только «NotAuthenticated».
Я предполагаю, что это происходит, потому что Feathers JS хранит токен JWT в window.localStorage, и он недоступен на Android app userspace.
Два вопроса:
1) Есть ли способ сказать Перьям JS, чтобы хранить этот токен где-то еще?
2) Если нет Кто-нибудь сталкивался с такой ситуацией и может дать мне решение?
Кстати, это мой код для аутентификации:
export class SSHSettingsPage implements OnInit {
public inputEmail: string;
public inputPassword: string;
constructor() { }
ngOnInit() {
}
public performLogin($event) {
let authObj: object = { "strategy": "local", "email": this.inputEmail, "password": this.inputPassword};
client.authenticate(authObj)
.then(res => {
console.log(res);
window.localStorage.setItem("user",JSON.stringify(res.user));
window.location.href = "/download";
})
.catch(err => {
console.log(err);
window.location.href = "/login-error";
})
}
}