ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
tinder automation
Automate Social application
-Nabe Jiro LT-
2017/11/11
Naoki Watanabe
1
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
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
tinder is a matichg app for android/ios
4
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
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
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
Results
8
That¡¯s all folks. Thank you for listening.
9

More Related Content

tinder automation

  • 1. tinder automation Automate Social application -Nabe Jiro LT- 2017/11/11 Naoki Watanabe 1
  • 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
  • 4. tinder is a matichg app for android/ios 4
  • 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
  • 9. That¡¯s all folks. Thank you for listening. 9