11
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Micro で JWT ログイン

Posted at

ZEIT の Micro で、 JWT ログインしてみた。
下記のモジュールで、JWT ログインを強制するミドルウェアが使える

非常に薄いミドルウェアで、ソースコードは50行くらいだった。
上記のモジュールでは、 JWT で sign するのは含まれていないみたい。ので、ログイン部分をどうやれば良いか調べたのでメモ。

const { sign } = require('jsonwebtoken')
const jwtAuth = require('micro-jwt-auth')

const login = (req, res) => {
  // req に入っている email, password などで認証する
  // ここでは適当なオブジェクトを取得したユーザーとする
  const user = {
    name: 'kazuya',
  }

  const token = sign({ user }, 'secret')
  return { token, user }
}

const me = jwtAuth(process.env.JWT_SECRET)(async req => {
  return req.jwt.user
})

module.exports = async req => {
  switch (req.url) {
    case '/login': 
      return login(req, res)
    case '/me': 
      return me(req, res)
  }      
}

これで、正しいトークンのみ通るようになる。

11
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?