-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AttributeError: module 'pynder' has no attribute 'Session' #209
Comments
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 have a local folder/file named pynder.py which is causing the error. Verify that your current working directory doesn't contain this. Perhaps the easiest way would be within an Ipython console and type When you install pynder, make sure you clone this repo. The version on pypi is old.
|
I cannot get the FBTOKEN. Any hints? |
The below works to generate FB access token:
|
Hello,
When I try to run `
import itertools
import pynder
FBTOKEN = ""
FBID = ""
session = pynder.Session(facebook_id=FBID, facebook_token=FBTOKEN)
users = session.nearby_users()
for user in itertools.islice(users, 5):
print(user.name())`
I get the following error. Any idea what's wrong?
"AttributeError: module 'pynder' has no attribute 'Session'"
Thanks!
The text was updated successfully, but these errors were encountered: