Skip to content

Instantly share code, notes, and snippets.

View franciscovargas's full-sized avatar

Francisco Vargas franciscovargas

View GitHub Profile
@franciscovargas
franciscovargas / tinder-api-documentation.md
Created November 18, 2015 14:39 — forked from rtt/tinder-api-documentation.md
Tinder API Documentation

Tinder API documentation

http://rsty.org/

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

@franciscovargas
franciscovargas / gist:48263886c3e0fa21e7f3
Created November 18, 2015 14:39 — forked from rtt/gist:5a2e0cfa638c938cca59
example python tinderbot
# encoding: utf8 1,1 Top# encoding: utf8
import argparse
from datetime import datetime
import json
from random import randint
import requests
import sys
from time import sleep