Device ID is not unique and changing over time
See original GitHub issueHi, thank you for the package. I am facing an issue, I am generating the IDs in a “service worker” in Windows Service mode using the below command. I am using the base package DeviceId
without any other extension packages.
new DeviceIdBuilder()
.AddUserName()
.AddMachineName()
.AddMacAddress(excludeWireless: true)
.ToString();
It works great but in a span of few hours (on the same network & machine) the generated ID gets changed.
Isn’t “Mac Address” is used as a seed to generate random string? Shouldn’t that be unique always?
Issue Analytics
- State:
- Created 4 months ago
- Comments:10 (3 by maintainers)
Top Results From Across the Web
Getting Device ID is not unique
I really have problem with getting unique deviceID. The code I am using now it this : UIDevice.currentDevice().identifierForVendor!
Read more >If "DEVICE ID" for my laptop has been changed, can I tell ...
Each device in Windows has it's own unique identifier known as the Hardware ID. The Device ID is the identifier of the PC...
Read more >Unique Device ID
The uuid on iOS is not unique to a device, but varies for each application, for each installation. It changes if you delete...
Read more >I need to get user device unique id that doesn't change ...
I need to get user device unique id that doesn't change even if app un install and re-install again or after factory reset...
Read more >Is it possible for two different users to have the same device ...
Device IDs are unique to individual devices which in turn are assigned to a unique user profile. They do not change on a...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I think this should fix my issue. I will update later on.
Thank you, I will try it for a day or two and report back. Really appreciate your quick response.