2017-04-15 7 views
0

最新のfeathers-authentication-clientとfeathers-authentication-localを持つクッキーにjwtトークンを保存する適切な方法は何ですか?feathers-authentication-localでログインしてjwtをCookieに保存する適切な方法は何ですか?

ドキュメントが見つかりませんでした。次のコードでlocalStorageで動作するように管理されていますが、feathers-authenticaion-oauth2のようにクッキー内に格納することをお勧めします。

const host = 'http://localhost:3030'; 
export const app = feathers() 
    .configure(rest(host).superagent(superagent)) 
    .configure(feathers.hooks()) 
    .configure(auth({ 
    storage: localStorage, 
    type: 'jwt', 
    })); 

おかげ

答えて

0

あなたは良いけど、間違ったドキュメント上で行っています。これを試してくださいhttps://docs.feathersjs.com/api/authentication/server.html

あなたの認証を設定する方法は、従来のpre-aukです。その後、feathers-authentication-clientとfeahters-authentication-localは最新のaukにあります。

アップデート:2017年4月24日現在、auth localとsocket.ioを使用して古いクライアントライブラリ0.xをaukスタイルのログイン1.0+と互換性を保つnpmパッケージがあります。 feathers-authentication-compatibility

関連する問題