Go to file
espen795 ea51e1982f
Like a single user using ID
With this script, you can like a single user. This way you can put the like_back script on autolikeback=false, and manually like users you like.
2021-07-11 21:28:27 +02:00
Like_back_likes.py Add files via upload 2020-11-10 23:14:09 +01:00
Like_id.py Like a single user using ID 2021-07-11 21:28:27 +02:00
README.md Update README.md 2020-12-07 12:10:45 +01:00

README.md

Likeback-Tinder-Likes

A script to like back your Tinder likes using (or in this context abusing) the teasers function in Tinder. The script allows you to utilise some gold functionality without the actual subscription. It is therefore intended for educational purposes (please don't sue me Tinder)

Small footnote because I have already got this question from friends:

  1. You can only like back people who liked you (of course)
  2. You have not swiped on (neither liked or disliked) them yet. Tinder does sometimes show profiles again, but this is rare and random.
  3. You might need to manually remove pictures from the pics folder
  4. Tinder only serves you the 10 most recent likes with the teasers function. Using local mode might help with this.

FIRST STEPS BEFORE RUNNING

Download Python: https://www.python.org/downloads/ Install Python

You need to get your API (refresh) token. The easiest way is through Tinderweb. The example is for Chrome, the steps for other browsers might differ slightly.

  1. Go to https://tinder.com/
  2. Press F12
  3. Navigate to tab Application
  4. Look for Storage -> Local Storage and click on the Tinder URL
  5. Find and copy the value for the TinderWeb/LoginDataRefreshToken (DON'T SHARE THIS CODE WITH ANYONE!)
    1. No refresh token: copy the APIToken instead
  6. Run the script for the first time
  7. Open the config.ini
  8. Paste the code after refresh_token = {CODE-GOES-HERE}
    1. No refresh token: put text into refresh_token = abcdef
    2. No refresh token: paste APIToken into x_auth = {CODE-GOES-HERE}
    3. Note: API token will not remain valid for long, only give or take a day

CHANGING THE SETTINGS

The following stettings are available:

  1. remote_mode True = get the most recent teasers from Tinder False = run using the filenames in the pics folder (as this might contain older profiles)
  2. auto_like_back, speaks for itself right
  3. save_images, if true save in the pics folder
  4. refresh_token = the code you pasted in first install
  5. x_auth = used to authenticate

Sources

Got the api information from https://github.com/fbessez/Tinder

Development

Developing on this script is difficult, because I need to get (sometimes multiple) likes. Not always easy.

Not tested

-

Feature improvements

Authentication using cookies.

Creating a combined mode where both local storage and remote mode is used.

Some functionality to allow user to actually view a profile before liking back.

Customise amount of tries per run in config.

Send automatic message when matched using customised string, ex: "Hey %name, how are you doing?".

Bugs

The LoginDataRefreshToken variable is not always available. It looks like sometimes the browser authenticates using a cookie. I will look into this, and try implementing cookie authentication. Please inform me if there are any!