next-firebase-authの実装
https://github.com/gladly-team/next-firebase-auth
Next.jsとfirebaseを用いたユーザ認証の設計
で実装方法に悩んだので、next-firebase-auth のコードを見ることにした。
next-firebase-auth は基本的にページコンポーネントを引数にとる、高階コンポーネントとして提供してる
まず最初に前提知識から
firebase-auth
に移動
next-firebase-auth では id token があるかないかでログイン状態を制御している
サインインでは id token を cookie に付与する
サインアウトでは id token を cookie から剥奪する
id token は執行時に自動更新
#firebase
#nextjs