92
submitted 10 months ago* (last edited 10 months ago) by [email protected] to c/[email protected]

This is an example of a share URL provided to you from TikTok when you click the "Share Link" button from the share menu:

https://www.tiktok.com/t/ABCDE1gHIJk2/

When you click that link, it will redirect you to a link like this:

https://www.tiktok.com/@fakename/video/1234567890101112131?_r=1&_t=1aB2CDe3fG

It has some extra bits at the end, so let me show you it's breakdown:

https://www.tiktok.com/@fakename/video/1234567890101112131 is the actual URL to the video you want to share. When you see a ? at the end of the URL, you are entering into the parameter zone.

?_r=1&_t=1aB2CDe3fG is not required to share the video, and it is the bit of data the app needs so it can present the popup you see after clicking the shared URL. When you click a shared URL a box appears before the video that says:

<Username> has shared you a video! 
<Profile Image> 
Do you want to watch & follow, or just watch?

[ Watch & Follow! ]
[ Watch ]

If your display name on TikTok is your whole name, well, everyone clicking the link now knows your name. If your TikTok username is a common username you use on the wider internet, well now you've linked that common username to the name you use here. If you're posting videos on your account that show your face... you get the idea.

So what should I do?

When you click the share button and get the link, open it in your phone or computer's browser first. Then, copy the part of the URL that is BEFORE the ? and share that link. There are also TikTok privacy front ends for TikTok like ProxiTok. One easy way to provide those links instead of a direct link is to use Farside.link. You do so by adding https://farside.link/ to the front of the TikTok URL. Like this: https://farside.link/https://www.tiktok.com/@fakename/video/1234567890101112131. Farside also works for things like Twitter, Reddit, Instagram, among others.

Anyway, hopefully this helps some people. Stay safe comrades.

all 30 comments
sorted by: hot top new old
[-] [email protected] 24 points 10 months ago

@[email protected]

Someone should make an issue for common referrer/tracking urls to be automatically scrubbed on submission. Would retain privacy and also help to disincentivize affiliate link spam.

.I don't want to use my github account for opsec reasons

[-] [email protected] 15 points 10 months ago

We already do some scrubbing on links, so you could add this to the clean_urls function in lemmy. Lmk when you have a PR for that.

[-] [email protected] 7 points 10 months ago* (last edited 10 months ago)

Their profile page is still under construction I'm not sure they would know how. But hopefully someone does because it's a solid suggestion. Maybe hexbear could add it then push it up.

[-] [email protected] 7 points 10 months ago

It would be cool if it was possible to use https://github.com/ClearURLs/Rules/ as a rule source, either as a built in option or configurable with a config option.

[-] [email protected] 8 points 10 months ago

Totally agree, I'd def appreciate if someone could add that as a git submodule and do a PR. Open an issue if you would.

[-] [email protected] 6 points 10 months ago* (last edited 10 months ago)

I'll take a look at adding their repo as a sub module to Lemmy.

[-] [email protected] 2 points 10 months ago

Alright, not sure if I understood the assignment, but I've created a pull request that adds the CleanURL repo as a submodule and created an issue for it: https://github.com/LemmyNet/lemmy/issues/4905

[-] [email protected] 2 points 10 months ago

Sweet thx, I made a post about this because it needs a lot more work than just pulling in a git submodule. https://lemmy.ml/post/18162485

[-] [email protected] 2 points 10 months ago

Yeah, I realized that afterwards. I've not dabbled in rust yet, but I'm very rust-curious, so maybe this is my time to learn haha.

[-] [email protected] 3 points 10 months ago
[-] [email protected] 2 points 10 months ago

I'm already looking at what codecadamy has to offer 😄.

[-] [email protected] 13 points 10 months ago

Building it into the platform would be incredible

[-] [email protected] 3 points 10 months ago

Also are images being scrubbed of metadata?

[-] [email protected] 3 points 10 months ago

They are on hexbear, not sure if stock lemmy does.

[-] [email protected] 18 points 10 months ago* (last edited 10 months ago)

Would also recommend the CleanURLs extension that tries to remove tracking elements from URLs you click. It's not 100% perfect, especially against those shortcut links, but the "Copy Clean URL" button when you right click makes it easy to share stuff without the tracking bullshit

[-] [email protected] 16 points 10 months ago* (last edited 10 months ago)

appreciate the PSA, seeing more bad links with trackers shared lately

the new reddit-logo share button also does this, and the youtube &si= tracker

another option if an obfuscated link from someone else, use a site like https://urlex.org/ to expand the url without opening the link and activating the tracking, then edit the url to generic

[-] [email protected] 15 points 10 months ago

Anyone who uses TikTok should visit the privacy settings and turn off all the options under “Suggest your account to others”, especially the one for “People who open or send links to you”.

Since turning this off, my shared links don’t display my username anymore. There are still some parameters left, presumably for tracking, so the advice in this post is still applicable even with this setting turned off.

[-] [email protected] 4 points 10 months ago

This is good advice, I've had those off long enough that I forgot I turned them off.

[-] [email protected] 11 points 10 months ago* (last edited 10 months ago)

Do ? exclusively precede parameters? Like could we extend the site to drop parameters either automatically or optionally (opt in?). Seems like it would be easy w regex

I don't know shit about rust but I could fuck around and see if I could get it to work, it's about time I did something useful around here

Edit: we could easily do it for a subset of domains like tiktok and YouTube etc

[-] [email protected] 10 points 10 months ago* (last edited 10 months ago)

? Is the part of the url that marks the start of the parameters section, which is a list of key=value pairs separated by &.

Some URLs require those to properly link to the resource you’re trying to share, they’re not entirely tracking data except on certain parts of sites like Twitter and apparently TikTok. For example YouTube uses the parameter “t” when you link to a specific timestamp in a video.

Edit: also do not use regex to parse a URL. Plenty of library code out there to do that without going down that dark path.

[-] [email protected] 2 points 10 months ago

But if you have to use regex use something like CleanURL's providers json file. No need to reinvent the wheel and its crowd sourced.

[-] [email protected] 4 points 10 months ago

Programming is all about finding the code other people wrote that does 90% of what you need then gluing it together by writing that last 10%. Unless you’re maintaining a library, in which case thank you for your service.

[-] [email protected] 11 points 10 months ago

This whole thread is full of very useful information. I love it. Thank you! stalin-heart

[-] [email protected] 5 points 10 months ago

Any time comrade!

[-] [email protected] 8 points 10 months ago

I avoid this issue by being too old to have a TikTok account.

this post was submitted on 17 Jul 2024
92 points (100.0% liked)

chapotraphouse

13847 readers
735 users here now

Banned? DM Wmill to appeal.

No anti-nautilism posts. See: Eco-fascism Primer

Slop posts go in c/slop. Don't post low-hanging fruit here.

founded 4 years ago
MODERATORS