Skip to content

Commit

Permalink
Merge pull request #17 from lotteon2/LF1-910-batch
Browse files Browse the repository at this point in the history
🐛 Url 수정
  • Loading branch information
nowgnas authored Jan 5, 2024
2 parents 22ae34e + cb67a08 commit eca19af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/kr/bb/payment/service/KakaopayService.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ public KakaopayReadyResponseDto kakaoPayReady(KakaopayReadyRequestDto requestDto
parameters.add(
"approval_url",
ORDER_SERVICE_URL
+ "/api/orders/approve/"
+ "/approve/"
+ requestDto.getOrderId()
+ "/"
+ requestDto.getOrderType());
parameters.add("cancel_url", ORDER_SERVICE_URL + "/api/orders/cancel");
parameters.add("fail_url", ORDER_SERVICE_URL + "/api/orders/fail");
parameters.add("cancel_url", ORDER_SERVICE_URL + "/cancel");
parameters.add("fail_url", ORDER_SERVICE_URL + "/fail");

HttpEntity<MultiValueMap<String, String>> requestEntity =
new HttpEntity<>(parameters, this.getHeaders());
Expand Down

0 comments on commit eca19af

Please sign in to comment.