diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/pushsubscription/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/pushsubscription/index.html')
-rw-r--r-- | files/ja/web/api/pushsubscription/index.html | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/files/ja/web/api/pushsubscription/index.html b/files/ja/web/api/pushsubscription/index.html new file mode 100644 index 0000000000..98b4e1412a --- /dev/null +++ b/files/ja/web/api/pushsubscription/index.html @@ -0,0 +1,90 @@ +--- +title: PushSubscription +slug: Web/API/PushSubscription +tags: + - API + - Experimental + - Interface + - Push + - Push API + - PushSubscription + - Reference + - Service Workers +translation_of: Web/API/PushSubscription +--- +<div>{{SeeCompatTable}}{{ApiRef("Push API")}}</div> + +<p><a href="/ja/docs/Web/API/Push_API">Push API</a> の <code>PushSubscription</code> インターフェースは、サブスクリプションの URL エンドポイントを提供するとともに、プッシュサービスの登録を解除できます。</p> + +<p>このインターフェースのインスタンスはシリアライズできます。</p> + +<h2 id="Properties" name="Properties">プロパティ</h2> + +<dl> + <dt>{{domxref("PushSubscription.endpoint")}} {{readonlyinline}}</dt> + <dd>プッシュサービスに関連したエンドポイントを含む {{domxref("USVString")}}。</dd> + <dt>{{domxref("PushSubscription.expirationTime")}} {{readonlyinline}}</dt> + <dd>プッシュサブスクリプションに関連付いたサブスクリプション期限切れ時間を表す {{domxref("DOMHighResTimeStamp")}} 。存在しない場合は null。</dd> + <dt>{{domxref("PushSubscription.options")}} {{readonlyinline}}</dt> + <dd>サブスクリプションを作成するために用いられるオプションを含むオブジェクト。</dd> +</dl> + +<dl> + <dt>{{domxref("PushSubscription.subscriptionId")}} {{deprecated_inline}} {{readonlyinline}}</dt> + <dd>プッシュサービスに関連したサブスクリプション ID を含む {{domxref("DOMString")}}。</dd> +</dl> + +<h2 id="Methods" name="Methods">メソッド</h2> + +<dl> + <dt>{{domxref("PushSubscription.getKey()")}}</dt> + <dd>サーバーに送信されてプッシュメッセージの暗号化に使用される、クライアントのパブリックキーを含む {{domxref("ArrayBuffer")}} を返します。</dd> + <dt>{{domxref("PushSubscription.toJSON()")}}</dt> + <dd>標準シリアライザー — サブスクリプションプロパティの JSON 記法を返します。</dd> + <dt>{{domxref("PushSubscription.unsubscribe()")}}</dt> + <dd>プッシュサービスの登録を解除する非同期プロセスを開始します。現在のサブスクリプションが成功裏に登録解除できた場合、{{domxref("Boolean")}} で解決される {{jsxref("Promise")}} を返します。</dd> +</dl> + +<h2 id="Example" name="Example">例</h2> + +<pre class="brush: js">navigator.serviceWorker.ready.then(function(reg) { + reg.pushManager.getSubscription().then(function(subscription) { + subscription.unsubscribe().then(function(successful) { + // 成功裏に登録解除。 + }).catch(function(e) { + // 登録解除失敗。 + }) + }) +});</pre> + +<h2 id="Specifications" name="Specifications">仕様</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">仕様</th> + <th scope="col">状態</th> + <th scope="col">コメント</th> + </tr> + <tr> + <td>{{SpecName("Push API", "#pushsubscription-interface", "PushSubscription")}}</td> + <td>{{Spec2("Push API")}}</td> + <td>初期定義。</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2> + +<div> +<div class="hidden">このページの互換性テーブルは構造化データから作成されています。データに貢献したい場合、<a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックし、プルリクエストを送ってください。</div> + +<p>{{Compat("api.PushSubscription")}}</p> +</div> + +<h2 id="See_also" name="See_also">関連項目</h2> + +<ul> + <li><a href="/ja/docs/Web/API/Push_API">Push API</a></li> + <li><a href="/ja/docs/Web/API/Service_Worker_API">Service Worker API</a></li> +</ul> |