컴굥일지

[Firebase] Request had invalid authentication credentials 에러 해결 본문

Tip & 오류 해결/오류 해결 모음

[Firebase] Request had invalid authentication credentials 에러 해결

gyong 2023. 7. 26. 14:25
반응형

문제 상황

firebase로 리액트 프로젝트를 배포하려고 했다.

firbase init 명령어를 쳤더니 아래와 같은 문구와 함께 제대로 작동하지 않았다.

Error: HTTP Error: 401, Request had invalid authentication credentials. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.

firebase-debug.log

 

문제 해결 방법

문제는 한 2,3년 전쯤에 firebase를 사용하면서 로그인을 했었던 적이 있어서였다.

그때 로그인한 정보가 남아있어서 firebase login이 이미 되었다고 문구는 뜨는데, 그때 로그인한 기록은 사용할 수 없어서 다시 로그인을 진행하면 되는 문제였다.

firebase login --reauth 를 터미널에서 치면 다시 로그인을 하게 되고, 문제없이 배포 진행을 할 수 있다.

반응형
Comments