You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)
**Note: this was written in April/May 2014 and the API may have changed since. I have nothing to do with Tinder, or their API, and I do not offer any support for anything you may build on top of this**
**Note: this was written in April/May 2014 and the API may have changed since. I have nothing to do with Tinder, nor their API, and I do not offer any support for anything you may build on top of this**
### API Details
rtt
revised
this gist Feb 4, 2016.
1 changed file
with
1 addition
and
1 deletion.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)
Note: this was written in April/May 2014 and the API may have changed since
**Note: this was written in April/May 2014 and the API may have changed since. I have nothing to do with Tinder, or their API, and I do not offer any support for anything you may build on top of this**
### API Details
rtt
renamed
this gist Aug 14, 2014.
1 changed file
with
0 additions
and
0 deletions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)
Note: this was written in April/May 2014 and the API may have changed since
### API Details
<table>
@@ -64,6 +66,8 @@ I've sniffed most of the Tinder API to see how it works. You can use this to cre
</tbody>
</table>
Note: all curl examples below omit headers for brevity -- you'll need to add the required headers shown in the table above
### Authenticating
You'll need to supply a facebook auth token and an associated facebook id.
rtt
revised
this gist Aug 14, 2014.
1 changed file
with
1 addition
and
1 deletion.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python code is here ->
I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here ->https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)
### API Details
rtt
revised
this gist Aug 14, 2014.
1 changed file
with
1 addition
and
1 deletion.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -66,12 +66,14 @@ I've sniffed most of the Tinder API to see how it works
### Authenticating
You'll need to supply a facebook auth token and associated facebook id.
You'll need to supply a facebook auth token and an associated facebook id.
```bash
> curl -X POST https://api.gotinder.com/auth --data '{"facebook_token": fb_token, "facebook_id": fb_user_id}'
```
The easiest way to get this is to go <ahref="https://www.facebook.com/dialog/oauth?client_id=464891386855067&redirect_uri=https://www.facebook.com/connect/login_success.html&scope=basic_info,email,public_profile,user_about_me,user_activities,user_birthday,user_education_history,user_friends,user_interests,user_likes,user_location,user_photos,user_relationship_details&response_type=token">here</a>, log in and then pick the auth token out of the URL you are redirected to.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I've sniffed most of the Tinder API to see how it works
### API Details
<table>
<tbody>
<tr>
<td>Host</td>
<td>api.gotinder.com</td>
</tr>
<tr>
<td>Protocol</td>
<td>SSL only</td>
</tr>
</tbody>
</table>
<b>Request headers</b>
<table>
<thead>
<tr>
<th>Header name</th>
<th>Description / example</th>
<th>Required?</td>
</tr>
</thead>
<tbody>
<tr>
<td>X-Auth-Token</td>
<td>A <a href="http://en.wikipedia.org/wiki/Universally_unique_identifier#Version_4_.28random.29">UUID4</a> format authentication token obtained via the /auth api endpoint</td>