|
|
|
|
|
by rogerbinns
5091 days ago
|
|
What I find fascinating is the app store URL. It includes en-US and the app is identified by a GUID so you have no chance of working out what it is other than clicking on the link. Locales of fr-CA and fr-FR worked but not en-UK or en-GB. Apple has a country code, the app name and a numeric id. But the app name is just decoration and is ignored, so you could easily mislead by putting in anything you want. From the country code it looks like they believe only one language is spoken in any country (eg I couldn't select between French and English for Canada). The ids aren't in numeric order - probably some sort of timestamp instead. Google uses a descriptive URL without country or language parts, and then the app is identified by package name (bundle id equivalent for the iOS crowd) which looks fine to us techie folk and mostly follows being the DNS name with some extra gunk such as com.rovio.angrybirdsspace.ads Amazon Android URLs are amazon.com/<App Title>/dp/<ID> where the app title is just decoration and can be changed to anything and ID is hexadecimal(ish). They all have various issues. I think locale information as part of the URI path is silly. Titles in the URLs is nice but open up social engineering attacks. As a techie I like the Google approach of identification, but that too is prone to social engineering (to my knowledge they do not verify a correspondence to the publishing organization DNS). But it is prettier than random numbers. A GUID is Microsoft's hammer and solution to everything. In this case it just makes the URLs unnecessarily long. |
|