Closed dancesWithCycles closed 9 months ago
AID is Android ID, you can read a bit about it here. It's meant to be unique enough to identify a device, but handsets and OSes can exist where it sends non-unique information. However in latest Android versions it does seem to work properly and send a unique enough ID anyway.
SER is Build Serial, another unique identifier but kept for backward compatibility. It only works on older Android OS versions, on newer versions it should return the same as AID, which is what you see above.
If you're trying to identify different phones you're not limited to just those parameters. You can make up your own hardcoded values, for example &deviceid=my_first_phone
and on another phone, &deviceid=the_other_phone
Hi folks, Thank you so much for providing and maintaining this repository.
I stumbled over it and could straight setup the
Custom URL
use case. Kudos!I did manage to receive the HTTP request at a test server.
Here are my settings.
My test server is receiving data from the phone successfully. For instance, refer to this log entry.
The next test shall involve multiple phones. That raises the questions
%AID
and%SER
actually mean?aid
orser
location entry together?For instance, my test server received the following 3 location entries.
Can you tell those 3 entries apart?
They originate in 2 different phones. I need to know exactly which entry comes from which phone.
Any idea?
Appreciate! Cheers!