Ivan.L
Ivan.L
customerKey 키를 아래와같이 입력하라고 하는데 어디서 확인하는지 모르겠습니다.
: test_gsk, live_gsk로 시작하는 시크릿 키는 클라이언트 코드에 노출되면 안 됩니다. 구매자를 식별하는 customerKey 값을 사용해주세요.
54 replies
테스트 결제는 되는데 서비스 client_eky 붙이면 400에러로 BAD REQUEST나오는건 어떻게 해야하나요?
테스트 결제는 되는데 서비스 clienteky 붙이면 400에러로 BAD REQUEST나오는건 어떻게 해야하나요? 결제는 넘어가고 인증 부분에서 진행되지 않습니다. ```js // 인증 부분 const options = { method: "POST", url: "https://api.tosspayments.com/v1/payments/confirm", headers: { Authorization: "Basic 배부받은키_값", "Content-Type": "application/json", }, data: { paymentKey: getUrlObj.paymentKey, amount: getUrlObj.amount, orderId: getUrlObj.orderId, }, }; axios .request(options) .then(function (response) { console.log(response.data); alert("결제에 성공하였습니다."); setValues((draft) => { draft.result = true; }); }) .catch(function (error) { console.error(error); alert("결제에 실패하였습니다. 잠시 후 다시시도해주세요."); navigate(-1); }); ```
30 replies
토스 페이먼츠 구현중인데 SPA CSR에서 결제진행 안되나요?
No description
47 replies