Skip Navigation

"Copy Link Without Site Tracking" now on ! ๐Ÿ™Œ

"Copy Link Without Site Tracking" now on @firefox ! ๐Ÿ™Œ

24

You're viewing a single thread.

24 comments
  • That's all those little link suffixes right? Can you turn this option into the default so you don't have 2 options? I don't think I've ever had a use case for sharing a link while telling my friends where I found it.

    • Everything after the final slash is data. This data is stored in key/value pairs, where the key is a variable name that is expected in the serverโ€™s code and the characters following the โ€œ=โ€œ is the encrypted value. Each pair is separated by an encrypted โ€œ&โ€, or โ€œ&โ€. Many times this string of values begins with a โ€œ?โ€.

      https://example.com/path/to/item/?id=568953&name=shjbxsdhjhcdf&xyz=djkkgcdtjn
      

      So we can maybe guess what the values might be but only if we know what the keys mean, and then weโ€™d have to give exactly the right data for each key (id, name, xyz). For all we know the most important piece of data in that string is xyz and it may be required, but we donโ€™t know that so we strip the whole query string off and now have a useless URL.

      Mostly, stripping off the query string should be fine if the path to the item youโ€™re looking for is enough. Like the amazon example in the other comment. Other times, not so much.

      Sorry for the novel, I can explain more if youโ€™d like.

24 comments