Skip to content

Commit

Permalink
ds
Browse files Browse the repository at this point in the history
  • Loading branch information
F1xGOD authored Mar 13, 2024
1 parent 79ab460 commit 58a4e2f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions password.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ import { getDatabase, ref, onValue, set } from "https://www.gstatic.com/firebase
import { getMessaging, onMessage } from "https://www.gstatic.com/firebasejs/10.8.0/firebase-messaging.js";
import { getMessaging as getMessagingSw } from "https://www.gstatic.com/firebasejs/10.8.0/firebase-messaging-sw.js";
import { onBackgroundMessage } from "https://www.gstatic.com/firebasejs/10.8.0/firebase-messaging-sw.js";
const fpPromise = import('https://fpjscdn.net/v3/Mqp8FONFFHZ5RWbNYULb')
.then(FingerprintJS => FingerprintJS.load())

// Get the visitorId when you need it.
fpPromise
.then(fp => fp.get())
.then(result => {
const visitorId = result.visitorId
console.log(visitorId)
})
import "/platform.js";
function getUserAgent(){
return platform.parse(navigator.userAgent);
Expand Down

0 comments on commit 58a4e2f

Please sign in to comment.