I need to uniquely identify mobile devices on my rails app without user registration.
They will be using a mobile app with an embedded with the default url hardcoded into the app. I'm thinking of doing
domain.com?uniqueid=[UniqueDeviceIdentifier usingLocalMethods]
and saving that in the session cookie so as the user loads subsequent pages through links from the index I can track that unique id.
Is there a much better way of handling this?