how do you build this in OSX? Apple's python situation is out of control
Stalking your Facebook friends on Tinder
51–60 of 112 posts
Re: Stalking your Facebook friends on Tinder
#52'gender’: 1, // 1 is female, 0 is male. C’mon Tinder that’s not how gender works C'mon Tinder.
Are there more than two genders now?
Gender can be either Male, Female, or Custom, and Facebook gives you the option to choose which gender pronouns you prefer. Thus, to see it represented as a boolean is unusual. I'm curious as to what the value of that field is when a user has chosen Facebook's custom gender display options.
Re: Stalking your Facebook friends on Tinder
#53Re: Stalking your Facebook friends on Tinder
#54Anyone getting unicode errors even after removing all of the emojis from the source?
Re: Stalking your Facebook friends on Tinder
#55 curl -v -X POST 'https://api.gotinder.com/auth' -H 'Content-Type: application/json' --data '{"facebook_token": "facebook_token_string", "facebook_id": "facebook_id_string"}'
With that I modified the python code to no longer POST to get the X-Auth-Token and just pasted it in there: self.headers["X-Auth-Token"] = 'auth_token_string'
print("Authenticated to Tinder ")
self.authed = True
print self.authed
After that, everything worked fine!Re: Stalking your Facebook friends on Tinder
#56f = open(SECRETS.json) self.fb_auth = json.load(f)
So does it matter what I name the auth parameters or just that I set the values correctly?
i.e:
{ "auth_token" : "TOKENVAL", "fb_id" : "IDVAL" }
Re: Stalking your Facebook friends on Tinder
#57Re: Stalking your Facebook friends on Tinder
#58Earlier quoted context omitted.
virtualenv venv --python=python3.5 source venv/bin/activate pip install -r requirements.txt
first line isn't working for me virtualenv venv --python=python3.5 Running virtualenv with interpreter /usr/local/bin/python3.5 Using base prefix '/Library/Frameworks/Python.framework/Versions/3.5' New python executable in venv/bin/python3.5 Also creating executable in venv/bin/python Failed to import the site module Traceback (most recent call last): File "/Users/ericlw/Development/tinder-detective/venv/bin/../lib/p…
brew install python3.5Re: Stalking your Facebook friends on Tinder
#59Anyone getting unicode errors even after removing all of the emojis from the source?