The document discusses automating the Tinder dating app. It describes connecting an Android phone to a PC to automatically swipe through profiles using ADB commands as a first trial. It then discusses using Facebook authentication to get an auth token to access Tinder's private API and make requests to get recommended profiles and like or pass on them. In the end it states the results of automating Tinder in this way.
2. Contents
1. Self Introduction
2. tinder is a matching app
3. First trial, swipe automatically with adb.
4. Second, Facebook authentication
5. Private API (but public)
6. Results
2
3. Self Introduction
¡ñ A startup company (2 monthes till the end of October, 2017)
¡ñ IBM (1.5 years)
¡ñ Studied Physics in the university
I love to ski, sky/marine diving, read a lot, study French.
3
5. First trial, connect Phone with PC and swipe
while true; do
adb shell input swipe 100 1000 4000 1000
done
works nicely, but not convenient.
5
6. Facebook and tinder Authentication
You need get facebook_auth_token (below) and facebook_id.
Then, POST to api.gotinder/auth to get tinder_auth_token for every request.
6
7. tinder private API
With tinder_auth_token in header,
Recommendated users:
curl https://api.gotinder.com/user/recs
Like or dislike user
curl https://api.gotinder.com/{like|pass}/{_id}
7