갤럭시 탭에서 결제 취소 프로세스 문의

. 서 failUrl .


- 탭 S9


- Credit Card > > > 로 failUrl


- Credit Card > > > > catch error or failUrl


Credit Card Desktop > catch error, Mobile > failUrl , 이 failUrl

? .

  widgetsRef.current
    ?.requestPayment({
      // skip
      successUrl: "https://xxxx.co.kr/en/purchase/302406/order/3254503?success=true&merchantUid=xxx",
      failUrl: "https://xxxx.co.kr/en/purchase/302406/order/3254503?success=false&merchantUid=xxx",
    })
    .catch((error: Record<string, unknown>) => {
      if (error.code === USER_CANCEL_ERROR_CODE) {
        router.push("/en/purchase/302406/order/3254503?success=false&merchantUid=xxx");
      }
    });
image.png
Was this page helpful?