-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEAT] 문의하기 이메일 및 구글 스프레드시트 요청 구현 #851
Comments
기능 명세
현재프론트엔드에서 다음과 같이 api를 요청해 엑셀에 문의 데이터를 저장한다. const sendData = () => {
const URL = process.env.GOOGLE_URL || '';
return fetch(URL, {
method: 'POST',
mode: 'no-cors',
body: JSON.stringify({ message, email, name, memberId }),
headers: {
'Content-Type': 'application/json',
},
});
}; 구현문의 형식 검증
|
고민 적어놓기
|
📌 어떤 기능인가요?
현재 프론트엔드에서만 문의하기 기능이 구현되어 있는데, 스프레드시트에 요청할 때 CORS 관련 설정 문제로 완료 여부를 알 수 없습니다.
📜 작업 상세 내용
⏳ 예상 소요 시간 (예상 해결 날짜)
24시간
The text was updated successfully, but these errors were encountered: