Handyman
Handyman13mo ago

안녕하세요

주문번호 64d62209-62f5-4d4f-9258-1aa41dd4740c 입니다 아까전에 문의 드렸을떄 orderId, amount, paymentKey 가 빈값으로 들어간다라고 답변받았습니다. 혹시 유효성검사를 한 후에 컴펌링크로 값을 보내야하는건가요? const paymentSuccessController = async (req, res) => { try { const userId = req.userId; const { orderId, amount, paymentKey } = req.query; // usePoint added const { usePoint, letterId } = req.body; const response = await axios.post( "https://api.tosspayments.com/v1/payments/confirm", { orderId, amount, paymentKey, }, { headers: { Authorization: "Basic " + Buffer.from(secretKey + ":").toString("base64"), "Content-Type": "application/json", }, responseType: "json", } ); if (response.data.error) { console.error("API 응답에서 오류:", response.data.error); throw new Error(response.data.error); } const paymentInfo = response.data; await paymentSuccessService( userId, letterId, paymentInfo, usePoint === "true" ); // usePoint passed res.status(201).json({ message: "success", }); } catch (error) { console.error("결제 성공 컨트롤러에서 오류:", error); // TODO: 결제 실패 비즈니스 로직 처리 res.redirect( /fail?code=${error.response?.data?.code || 'UNKNOWN_ERROR'}&message=${error.response?.data?.message || 'Unknown error'} ); } }; 제가 작성한 결제 승인코드인데 혹시 순서가 잘못됬나 싶어 문의드립니다
4 Replies
토스페이먼츠 BOT
⏳ 잠시만 기다려주세요! 곧 답변드리겠습니다
오류 문의일 경우 아래 정보를 미리 전달해주시면, 빠른 답변에 도움이 됩니다.
- 주문번호(orderId) : - 문의 내용 :
(img를 함께 첨부해주시면 도움이됩니다)
* 계약관련 내용은 1544-7772로 문의주세요. * 주말/공휴일에는 답변이 늦을 수 있어요.
Handyman
HandymanOP13mo ago
네 알겠습니다!
토스페이먼츠 BOT
❤️ 기술문의 경험이 어떠셨나요?!
간단히 코멘트 남겨주세요! 제품 발전에 큰 힘이 됩니다.

Did you find this page helpful?