tajnymag / tinder-deblur

Simple script using the official Tinder API to get clean photos of the users who liked you
MIT License
292 stars 28 forks source link

Liking deblured pictures does not work anymore #55

Open Meiserj opened 1 year ago

Meiserj commented 1 year ago

I've used the extension before and it always worked. I can still deblur pictures, however now when I use the like button, it deletes the person from the preview, but the like does not go through. Looking at network analysis I found the following out: https://api.gotinder.com/like/u/ is called twice. Once with fetch, once with post. The fetch returns 204 (no data) and the post returns 404 (not found). Maybe they changed the API or something? I tried the dev version of the script aswell, but same issue.

mtt0909 commented 1 year ago

I've reported this for a while but I think the developer is busy at the moment. I'm also seeing a lot of random profiles show up in the like list which are erroneous - sometimes the profiles show up straight after in the card view but do not produce a match so the likes shown by the scrips were clearly not valid.

KaKi87 commented 1 year ago

It also looks like there's no way to match someone once clicking the deblurred like button.

So, until this is solved, I just do as I did before this feature was introduced : I reject everyone until the app presents me the one who's picture matches the deblurred one.

andreglud commented 1 year ago

Can confirm - only deblur works. Tested on various machines and devices.

varkem commented 1 year ago

Yea it is unfortunate that the liking feature doesn't work anymore. At least the deblur still works, but if the dev comes back and fixes it, that would be godsend

KaKi87 commented 1 year ago

Hi, Any news ? Thanks

tajnymag commented 11 months ago

⚠️UPDATE⚠️

The project started as a simple wrapper around a javascript function posted on Reddit. I gained way more traction than I anticipated and I couldn't keep up as well and fast as I should have. What didn't help, was Tinder patching the exploited bug and later changing both API and frontend's identifiers. With me not on Tinder anymore, I am not able to test possible changes and/or find new exploits.

I am accepting any PRs I get and will do so until the project is archived. If you, the reader, are willing to take over the project, please, let me know.

If something isn't working, sometimes there's newer version available on the develop branch. To try it, click this link. Once there's a newer stable version, your userscript extension should update you automatically to it.

MrNoino commented 10 months ago

I found a way to recover the hidden profiles when clicking the buttons. I just edited the script and commented the this.hidden = !!localStorage.getItem('hiddenUsers')?.includes(userId); line.

Martin824S commented 9 months ago

I found a way to recover the hidden profiles when clicking the buttons. I just edited the script and commented the this.hidden = !!localStorage.getItem('hiddenUsers')?.includes(userId); line.

Sorry for bothering you but I can't seem to make it work, can you be a bit more precise about what to write in the code? (I'm fairly new to coding)

Thanks in advance!

ayy-lmao1 commented 8 months ago

I found a way to recover the hidden profiles when clicking the buttons. I just edited the script and commented the this.hidden = !!localStorage.getItem('hiddenUsers')?.includes(userId); line.

Sorry for bothering you but I can't seem to make it work, can you be a bit more precise about what to write in the code? (I'm fairly new to coding)

Thanks in advance!

Okay so to comment on a line of script, all you need to do is add "/" or "//" at the beginning of the targeted line. So for example you'd want to edit the line of scripted mentioned into this /this.hidden = !!localStorage.getItem('hiddenUsers')?.includes(userId); or into this //this.hidden = !!localStorage.getItem('hiddenUsers')?.includes(userId); . This small edit essentially recovered the profiles I tried to like, but disappeared. However, I do not know if you are now able to actually like the profiles. Feedback on that issue is appreciated.