Spring

[Firebase/Postman] 파이어베이스 로그인 인증 토큰 받아오기

alsruds 2024. 3. 21. 16:11

 

 

Postman 프로그램에서 Firebase 서버에 로그인하여 인증 토큰을 받아봅시다 ~

 


 

[ Postman 으로 Firebase 로그인 인증 토큰 받기 ]

 

0. 참고한 문서

https://medium.com/comsystoreply/authentication-with-firebase-auth-and-spring-security-fcb2c1dc96d

 

Authentication with Firebase Auth and Spring Security

There isn’t a software developer in the world that hasn’t once in his life faced a question of authentication. Let’s try to make it easier.

medium.com

 

1. Postman

 

✅ Post 요청

✅ 요청 URL : https://identitytoolkit.googleapis.com/v1/accounts:signInWithPassword?key=[FIREBASE_API_KEY]

 

 

💡 테스트 성공 시

{
    "kind": "identitytoolkit#VerifyPasswordResponse",
    "localId": "[사용자 UUID]",
    "email": "[로그인 EMAIL]",
    "displayName": "",
    "idToken": "[ID_TOKEN 값]",
    "registered": true,
    "refreshToken": "[REFRESH_TOKEN 값]",
    "expiresIn": "3600"
}

 

→ idToken 부분이 인증 토큰 !!