• We just launched and are currently in beta. Join us as we build and grow the community.

Others How to view who liked you on tinder! (Without tinder gold)

manan

Crypto Investor
M Rep
0
0
0
Rep
0
M Vouches
0
0
0
Vouches
0
Posts
147
Likes
55
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 300 XP
Found this method on browsing pastebin.
You only have to browse to the who liked you section on a computer, inspect element, open the console and paste the code ! It will show you the profile picture :)
Code:
Code:
async function unblur() {
const teasers = await fetch("https://api.gotinder.com/v2/fast-match/teasers", { "headers": { "X-Auth-Token": localStorage.getItem('TinderWeb/APIToken') }}).then(res => res.json()).then(res => res.data.results);
const teaserEls = document.querySelectorAll('.Expand.enterAnimationContainer > div:nth-child(1)');
for (let i = 0; i < teaserEls.length; ++i) {
const teaser = teasers;
const teaserEl = teaserEls;
const teaserImage = teaser.user.photos[0].url;
teaserEl.style.backgroundImage = `url(${teaserImage})`;
}
}
setInterval(() => {
if (location.pathname === '/app/likes-you') {
unblur();
}
}, 5000);
 

438,139

315,428

315,437

Top