전체 글
-
Spring boot + React 시작하기 5 (생성한 토큰 Header에 넣어 보내주기)DEV/spring 2024. 2. 21. 11:01
지금까지 작성한 코드에서는 기존에 생성한 토큰은 body에 적재하여 response를 보냈다. 서버 --> 클라이언트, 클라이언트 --> 서버 두 가지 케이스에 대해 모두 토큰을 해더에 넣어서 보내주고 싶었다. 우선 서버 --> 클라이언트 (API Response) Header에 생성한 토큰을 담아보도록 하겠다. 환경 : Mac OS, JDK17, Gradle, Spring 3.2.2 기존에 작성한 ResponseDto.java의 Result를 반환하는 함수를 추가하자. 추가된 함수는 "getResult" 함수뿐이다. ResponseDto.java package com.ssg.demo.v2.ssgdemov2.Dto; import lombok.AllArgsConstructor; import lombok.D..
-
AWS AmazonConnectApp.init() Sample with TypescriptDEV/aws 2024. 2. 20. 17:56
SampleCode.tsx import './App.css'; import { AgentClient, AgentStateChangedHandler } from "@amazon-connect/contact"; import { AgentStateChangedEventData } from "./type/AgentStateChangedHandler" const agentClient = new AgentClient(); console.log("agentClient : ", agentClient) function App() { const handler: AgentStateChangedHandler = async (data: AgentStateChangedEventData) => { console.log("Agent..
-