1. 카카오 로그인 인증 snsID 받아오기 2. 리다이렉트 동작 수정 3. 세션을 통한 토큰 저장 3.1. 세션서비스 생성 4. 회원가입 화면으로 이동
8 lines
189 B
C#
8 lines
189 B
C#
namespace Back.Program.Models.APIResponses;
|
|
|
|
public class LoginAPIResponse
|
|
{
|
|
public string token { get; set; } = string.Empty;
|
|
public string refresh { get; set; } = string.Empty;
|
|
}
|