From eeeeb670e51ea5e0fbe4c92142c2113908e7a6ac Mon Sep 17 00:00:00 2001 From: Ashley Date: Fri, 3 May 2024 18:57:48 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A6=B0=ED=8A=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/content/docs/ko/auth/guide-1/readme.mdx | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/content/docs/ko/auth/guide-1/readme.mdx b/src/content/docs/ko/auth/guide-1/readme.mdx index f8b0fba11..e7e4cc9ea 100644 --- a/src/content/docs/ko/auth/guide-1/readme.mdx +++ b/src/content/docs/ko/auth/guide-1/readme.mdx @@ -4,11 +4,8 @@ description: 카드 정보를 직접 입력하여 일회성 결제 또는 빌링 targetVersions: ["v1"] --- -import Hint from "~/components/Hint.astro"; -import ContentRef from "~/components/gitbook/ContentRef.astro"; import Figure from "~/components/Figure.astro"; -import Tab from "~/components/gitbook/tabs/Tab.astro"; -import Tabs from "~/components/gitbook/tabs/Tabs.astro"; +import Hint from "~/components/Hint.astro"; import Image1 from "../_assets/subscription.png"; @@ -149,7 +146,8 @@ const { 결제창을 이용해 빌링키를 발급할 때는 포트원 SDK를 이용합니다. -포트원 SDK를 설치하는 방법은 [포트원 SDK 설치하기](https://developers.portone.io/docs/ko/authpay/guide?v=v1#1-포트원-sdk-설치하기) 문서를 참고하세요. +포트원 SDK를 설치하는 방법은 +[포트원 SDK 설치하기](https://developers.portone.io/docs/ko/authpay/guide?v=v1#1-포트원-sdk-설치하기) 문서를 참고하세요. `IMP.request_pay()` 함수를 호출 시 `customer_uid` 파라미터를 포함하는 경우 빌링키를 발급하기 위한 결제창을 열 수 있습니다. @@ -226,7 +224,8 @@ IMP.request_pay( **빌링키 발급과 결제 요청을 한번에 하기** - 예약결제 REST API [**`/subscribe/payments/schedule`**](../../../api/api-3/api)를 사용하면 등록된 customer\_uid가 없는 경우 빌링키 신규 발급을 먼저 진행한 후 schedule정보를 예약합니다.(카드정보 필수사항) + [결제 예약 API](https://developers.portone.io/api/rest-v1/nonAuthPayment.subscribe#post%20%2Fsubscribe%2Fpayments%2Fschedule)를 + 사용하면 등록된 customer\_uid가 없는 경우 빌링키 신규 발급을 먼저 진행한 후 schedule정보를 예약합니다.(카드정보 필수사항) [비 인증 결제(빌링키) API](https://developers.portone.io/api/rest-v1/nonAuthPayment#post%20%2Fsubscribe%2Fpayments%2Fagain) @@ -347,7 +346,6 @@ if (!paymentResponse.ok)
- 예약된 결제가 시도되었을 때 발생하는 webhook 이벤트를 처리하는 로직에서 예약된 결제가 정상적으로 완료되고 결제 내역이 저장되면 다음 결제를 예약하는 예제입니다. ```ts title="server-side" @@ -395,5 +393,3 @@ if (!paymentResponse.ok) } }); ``` - -