Skip to content

Commit

Permalink
[ko] PushSubscription.toJSON() 신규 번역
Browse files Browse the repository at this point in the history
  • Loading branch information
etoile-j committed Aug 1, 2024
1 parent e6ca150 commit 0601b0a
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions files/ko/web/api/pushsubscription/tojson/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
title: "PushSubscription: toJSON() 메서드"
short-title: toJSON()
slug: Web/API/PushSubscription/toJSON
l10n:
sourceCommit: 3a91caa0ebbc5131ed75afe0e5168cd5bffc0976
---

{{APIRef("Push API")}}{{SecureContext_Header}}{{AvailableInWorkers}}

{{domxref("PushSubscription")}} 인터페이스의 `toJSON()` 메서드는
표준 직렬 변환기입니다. 구독 속성의 JSON 표현을 반환하여
유용한 단축 방법을 제공합니다.

## 구문

```js-nolint
toJSON()
```

### 매개변수

없음.

### 반환 값

JSON 객체. 이 객체는 구독 엔드포인트, `expirationTime` 그리고 공개 키를 포함하며,
각각은 `endpoint` 멤버, `expirationTime` 멤버, `keys` 멤버입니다.

## 예제

```js
navigator.serviceWorker.ready.then((reg) => {
reg.pushManager.getSubscription().then((subscription) => {
const mySubscription = subscription.toJSON();
// 구독 세부 정보로 무언가 하기
});
});
```

## 명세서

{{Specifications}}

## 브라우저 호환성

{{Compat}}

0 comments on commit 0601b0a

Please sign in to comment.