Charles Jekel
Charles Jekel
Do you have the latest Pynder installed? Install from source -- not from pip (pip is outdated). It works for me with the default HTTP headers in Pynder.
> Upgraded from pynder on pypi to a clone/installed version of this repo and now nearby_users() produces a generator object, but iterating through it causes it to hang. Perhaps you...
> yes, just did pip install pynder. Do you think there is a newer version available? As taseppa pointed out, the version on PyPI is very old. You should clone...
Whatever method you used to grab that token, you should log out immediately. That _should_ cancel the token. It's probably a good idea to keep that private. --- You may...
travis-ci is throwing a request code 401 (unauthorized login). Could it be possible that the token used in test.ini is no longer valid? Anyone care to test if this works...
If this works https://github.com/fbessez/Tinder/blob/master/phone_auth_token.py then your facebook_token should be this line ```access_token = validate_response["access_token"]``` otherwise that script outputs your X-Auth-Token for pynder... The MITM methods are a bit trickier to...
>Do you think that the facebook token is wrong? Yes it looks like the facebook token is wrong unfortunately. >I also got the tinder token which is in this form:...
@ryan713 I'm not sure what's going on then. How are you using this pynder version? with facebook_token or XAuthToken when you create the Session? **This PR of pynder is working...
@fjleon1980 see https://github.com/charliewolf/pynder/issues/127 , but you need to use a loop or manually iterate through the generator with ```user = next(users) ```
It appears this fix works on Python 3.X, but not on Python 2.7. Does anyone know why that may be? EDIT: OOOPS! This PR is indeed working on Python 2.7.