Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

navigator.id.logout

非標準
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

注記: この機能は、まだどのブラウザでもサポートされていません。Persona を使用する Web サイトは、そのページに ポリフィルライブラリ を含めなければなりません。

要約

この関数は、Persona で、Web サイトに対する自動的なログインの持続フラグをリセットするために使用します。この関数が呼び出された後、サイトに自動的にサインインされなくなるので、ユーザが明示的にログインしなおす必要があります。

Web サイトは、この関数をサイトの "log out" ボタンの click ハンドラから呼び出さなければなりません。

この関数は、ユーザの証明書や署名キーをブラウザに 消去させません。そのため、logout() を呼び出した後、ユーザの ID プロバイダが与えた証明書の新しさに依存して、新たなログインの時に新しいパスワードをユーザに求めたり求めなかったりします。しかし、サインインに使用するメールアドレスの選択は求められます。

構文

navigator.id.logout();

コード例

// ユーザが "Sign Out" をクリックした時に navigator.id.logout(); を実行する
var signoutLink = document.getElementById('signout');

if (signoutLink) {
  signoutLink.onclick = function(event) {
    event.preventDefault();
    navigator.id.logout();
  };
};

仕様

まだどの仕様書にも含まれていません。

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: fscholz, khalid32, ethertank, Marsf
 最終更新者: khalid32,