Can the open source version get browserVersion and osVersion? #975
Answered
by
Finesse
AlbertXiaoPeng
asked this question in
Q&A
-
I want to get osVersion, os, browserName and browserVersion in the open source version. When I use it as follows<script>
// Initialize the agent at application startup.
const fpPromise = import('https://openfpcdn.io/fingerprintjs/v4')
.then(FingerprintJS => FingerprintJS.load())
// Get the visitor identifier when you need it.
fpPromise
.then(fp => fp.get({extendedResult: true}))
.then(result => {
console.log(result)
})
</script> The results are as followsIt doesn't have the values I need. |
Beta Was this translation helpful? Give feedback.
Answered by
Finesse
Dec 5, 2023
Replies: 2 comments 1 reply
-
Are these features only accessible to the pro version? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Getting browser and OS version is outside of the FingerprintJS scope. You can use UAParser.js for this. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
JuroUhlar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Getting browser and OS version is outside of the FingerprintJS scope. You can use UAParser.js for this.