Skip to content

Instantly share code, notes, and snippets.

@IonBazan
Last active October 31, 2020 10:18
Show Gist options
  • Save IonBazan/b92748ce772bac171d086ac585f511f8 to your computer and use it in GitHub Desktop.
Save IonBazan/b92748ce772bac171d086ac585f511f8 to your computer and use it in GitHub Desktop.
Tinder liked photos
// Copy-paste this code into the Developer Console (F12 or Cmd+Option+I on Mac) on Tinder Web. Please remember to allow for popups.
fetch('https://api.gotinder.com/v2/fast-match/teasers', {
headers: {
'x-auth-token': localStorage.getItem('TinderWeb/APIToken'),
}
})
.then(r => r.json())
.then(data => data.data.results.map(result => result.user.photos.map(photo => window.open(photo.url))))
Copy the following URL and save it as a bookmark. Click the bookmark while using Tinder Web.
javascript:fetch(%22https%3A%2F%2Fapi.gotinder.com%2Fv2%2Ffast-match%2Fteasers%22%2C%7Bheaders%3A%7B%22x-auth-token%22%3AlocalStorage.getItem(%22TinderWeb%2FAPIToken%22)%7D%7D).then(function(a)%7Breturn%20a.json()%7D).then(function(a)%7Breturn%20a.data.results.map(function(b)%7Breturn%20b.user.photos.map(function(c)%7Breturn%20window.open(c.url)%7D)%7D)%7D)%3Bvoid+0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment