type: PIN
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
type: PIN
Consumer key: IQKbtAYlXLripLGPWd0HUA
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, nor their API, and I do not offer any support for anything you may build on top of this
var _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(f) { | |
return typeof f | |
} | |
: function(f) { | |
return f && "function" == typeof Symbol && f.constructor === Symbol && f !== Symbol.prototype ? "symbol" : typeof f | |
} | |
; | |
TAC = function() { | |
function f(f, a, b, d, c, r) { | |
null == r && (r = this); |
import sys | |
import re | |
import gzip | |
import mimetypes | |
from mimetools import Message | |
from StringIO import StringIO | |
def parse_headers(raw_headers): | |
response_line, headers_text = raw_headers.split('\n', 1) | |
headers = Message(StringIO(headers_text)) |