리액트 카카오페이 / 커넥션타임아웃 에러

백엔드 없이 프론트엔드 테스트값으로만 결제테스트를 진행하려고 합니다.
리액트로 Kakao pay API를 구현하려고 하는데, 항상 응답이 오지않고 커넥션타임아웃으로 뜹니다.
어디를 수정해야 할까요…?

export const payReady = (userFee , setState) =>
axios.post(/v1/payment/ready, {
Headers: {
Authorization: “KakaoAK 61ba2289c1c4f8b0fb0f53eb2ae8cf41”,
“Content-type”: “application/x-www-form-urlencoded;charset=utf-8”
},
params: {
cid : “tC0ONETIME”, // 가맹점코드, 테스트결제는 TC0ONETIME 사용
partner_order_id: “partner_order_id”,
partner_user_id: “partner_user_id”,
item_name: “주차요금”,
quantity: 1,
total_amount: userFee,
vat_amount: 0, // 부과세
tax_free_amount: 0, // 비과세
approval_url: “http://localhost:3000/location/123”, // 결제 성공 시 redirect url
fail_url: “http://localhost:3000/location/123”, // 결제 취소 시 redirect url
cancel_url: “http://localhost:3000/location/123” // 결제 실패 시 redirect url
}}).then((res) => {
res.data && console.log(res.data); //response data (next_redirect_mobile_url , next_redirect_pc_url)
// next_redirect_pc_url 과 tid(결제고유번호)를 저장