I am using fingerprintjs reference: http://valve.github.io/fingerprintjs/
It works fine and generate same code every time i use a particular page. But when the same code and page is executed on private mode of the same browser it generates different code.
var fingerprint = new Fingerprint({
ie_activex: true,
screen_resolution: true,
canvas: true}).get();
console.log(fingerprint);
What should i do to make it same on private mode.
Fingerprint JS is now providing the same id across normal sessions and incognito sessions,
Give it a try on https://fingerprintjs.com/
and try opening it in Incognito.
It still does not support cross-browser cases.