This is a collection of assorted utilities for Tinder that one may find useful. Note that you need to set the FACEBOOK_TOKEN
and FACEBOOK_ID
environment variables, as described below.
Game theory suggests that one should always swipe right on Tinder. This utility will swipe right on everyone within a 100-mile radius of you (given sufficient time).
This is not meant to be sexist or misogynist. This is simply meant to maximize the number of new people that you meet by taking first impressions out of the equation.
One can obtain the Facebook token by clicking here Once there, go to your browser's developer console, click to the Network tab, and go to the above URL again. After the second traversal, you should see two network calls on the developer console. Click the first one and look at its response headers. There should be a "location" field in the header. The value of that field should contain an auth_token.
You should then set this as an environment variable (export FACEBOOK_TOKEN=token_value_here
).
Go to your Facebook profile, view the source code, and search for "profile_id" to find this.
You should then set this as an environment variable (export FACEBOOK_ID=id_value_here
).
So far, I've run into two cases -- you've either run out of active Tinder users within a 100-mile radius to potentially match with, or your auth token has expired. In the first case, just wait for a bit before restarting the script, or programatically change your location (to come in a future update). In the second case, just get a new auth token and set your FACEBOOK_TOKEN
environment variable accordingly.
I'm working on adding better error handling for these cases.
Thanks to Benjamin Coriou for his py-tinder library.