You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
현재 알림 API 연결 중 어려움을 겪고 있어서 문의 드립니다.. 아래 내용 확인 부탁드립니다!
프론트엔드 측 코드
consttoken=Cookies.get('accessToken');//NEXT_PUBLIC_API_BASE_URL=https://api.wego.monster/api/v1consteventSource=newEventSource(`${process.env.NEXT_PUBLIC_API_BASE_URL}/notifications/subscribe?accessToken=${token}`,);eventSource.onopen=()=>{console.log('SSE 연결 열림');};eventSource.addEventListener('connect',(event)=>{console.log('SSE 연결 확인:',event.data);});eventSource.addEventListener('notification',(event)=>{constdata=JSON.parse(event.data);console.log(data);});eventSource.onerror=(error)=>{console.error('SSE 에러:',error);console.log('readyState:',eventSource.readyState);};
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
현재 알림 API 연결 중 어려움을 겪고 있어서 문의 드립니다.. 아래 내용 확인 부탁드립니다!
프론트엔드 측 코드
테스트 환경
Origin: https://local.wego.monster:3000 (로컬 환경)
Host: https://api.wego.monster/api/v1/notifications/subscribe?accessToken=...
❓ 문제
eventsource 연결 후 아무런 콘솔이 찍히지 않고, 1분 후 SSE 연결 Timeout 되면서 아래 로그가 동시에 찍힙니다
또한
SSE 연결 확인로그가 찍히지 않고 있습니다네트워크 탭 정보

요청 후 네트워크 탭 상태
Timeout 후 네트워크 탭 상태

Beta Was this translation helpful? Give feedback.
All reactions