ユーザーに関する詳細情報を取得できるJavaScriptです。
取得できる情報は以下の通りです。
項目名 | 内容 |
---|---|
PublicIP | ユーザーのIPアドレスです。 |
Host | IPアドレスのホスト名です。 |
UserAgent | ユーザーエージェントです。 |
IsItTor | Torを使用している場合はtrue、それ以外はfalseです。 |
RealIP | プロキシを経由する前のIPアドレスです(ただし偽造可能)。 |
WebRTCInfo | candidate情報です。 |
Browser.CodeName | ブラウザの開発コードです。 |
Browser.Name | ブラウザのベース名です。 |
Browser.Version | ブラウザのバージョンです。 |
Browser.Language | ブラウザの言語です。 |
Browser.Platform | ブラウザのプラットフォームです。 |
Browser.Referrer | アクセス元のURLです。 |
Browser.ScreenWidth | スクリーンの横の長さです。 |
Browser.ScreenHeight | スクリーンの縦の長さです。 |
Browser.ScreenColorDepth | 色の深度です。 |
Browser.ViewPortWidth | ブラウザのビュアーの横の長さです。 |
Browser.ViewPortHeight | ブラウザのビュアーの縦の長さです。 |
Browser.DevicePixelRatio | CSS解像度と物理解像度の比です。 |
Browser.HasPointer | ポインター機能を保持しているか否かです。 |
Browser.MaxTouchPoints | 最大同時ポイント数です。 |
Headers.UserAgent | ヘッダーによるユーザーエージェントです。 |
Headers.AcceptLanguage | 対応言語の情報です。 |
Headers.AcceptEncoding | 対応エンコーディングの情報です。 |
Headers.UserAgentClientHints | User-Agent Client Hintsです。 |
- まず初めに、Scriptをhead内で読み込む必要があります。
<script src="https://cdn.jsdelivr.net/gh/ActiveTK/endpoint.js@main/src/client/endpoint.min.js"></script>
- JavaScriptでwindow.endpointjsから関数を呼び出します。
<script>
window.endpointjs(function( result ) {
console.log(result);
console.log("IPアドレス: " + result.PublicIP);
});
</script>
https://activetk.github.io/endpoint.js/tests/html/index.html
その場合、以下のようにsetTimeoutで遅延処理を行ってください。
window.endpointjs(function( result ) {
setTimeout(function(){DoingSomething(result)}, 100);
});
function DoingSomething(result) {
if (!result.PublicIP)
setTimeout(function(){DoingSomething(result)}, 100);
else
for(key in result) {
if (typeof result[key] === 'object')
for (key2 in result[key])
console.log(key + "." + key2 + ": " + result[key][key2]);
else
console.log(key + ": " + result[key]);
}
}
本プロジェクトは、The MIT Licenseの下に公開されています。
opyright (c) 2023 ActiveTK.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.