0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Axiosを利用してCookieを送信する方法

Posted at

はじめに

Go(Echo) + Next.jsを用いてアプリを作成していたのですが、ブラウザをリロードするとAPI実行時に以下のようなエラーが発生し、その解決に時間がかかってしまったので、備忘録として記事を作成します。

"missing or malformed jwt"

原因

axiosにCookie情報を含めていなかったことが原因だと考えました。

解決方法

修正前
axios.get("http://localhost:8080/users");

修正後
axios.get(
        "http://localhost:8080/users",
        { withCredentials: true }
);

withCredentialsをtrueにすることでAxiosにCookie情報を付与することができます。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?