Skip to content

Commit

Permalink
린트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sso-ashley committed May 3, 2024
1 parent e6d86d7 commit eeeeb67
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions src/content/docs/ko/auth/guide-1/readme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down Expand Up @@ -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` 파라미터를 포함하는 경우 빌링키를 발급하기 위한
결제창을 열 수 있습니다.
Expand Down Expand Up @@ -226,7 +224,8 @@ IMP.request_pay(
<Hint style="info">
**빌링키 발급과 결제 요청을 한번에 하기**

예약결제 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정보를 예약합니다.(카드정보 필수사항)
</Hint>

[비 인증 결제(빌링키) API](https://developers.portone.io/api/rest-v1/nonAuthPayment#post%20%2Fsubscribe%2Fpayments%2Fagain)
Expand Down Expand Up @@ -347,7 +346,6 @@ if (!paymentResponse.ok)

<Figure src={Image1} />


예약된 결제가 시도되었을 때 발생하는 webhook 이벤트를 처리하는 로직에서 예약된 결제가 정상적으로 완료되고 결제 내역이 저장되면 다음 결제를 예약하는 예제입니다.

```ts title="server-side"
Expand Down Expand Up @@ -395,5 +393,3 @@ if (!paymentResponse.ok)
}
});
```


0 comments on commit eeeeb67

Please sign in to comment.