Skip to content

Commit

Permalink
Update KakaoPaymentRedirectController.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Daolove0323 committed Nov 21, 2024
1 parent 36e7386 commit 37ccb3b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ public String redirectKakaopay(RedirectAttributes redirectAttribute) {

@GetMapping("/kakaopay/redirect/approval")
public String redirectKakaopayApproval(
@RequestParam("pg_token") String pgToken, @RequestParam(value = "1", required = false) Long orderId) {
@RequestParam("pg_token") String pgToken, @RequestParam Long orderId) {
log.debug("실행되는지 확인 테스트");
return "redirect:" + approvalDeepLink + "?reservationId=" + "1";
return "redirect:" + "wouldyouin://booking/kakao/check/payment_approve" + "?reservationId=" + "1";
// paymentService.approvePayment(orderId, pgToken);
// Long reservationId = paymentService.approvePayment(orderId, pgToken);
// return "redirect:" + "wouldyouin://booking/kakao/check/payment_approve" + "?reservationId=" + reservationId;
Expand Down

0 comments on commit 37ccb3b

Please sign in to comment.