locationsharinglib: Unable to get any data.
Hello,
I just followed your simple example and I’m getting no data from it at all. My cookie seems correct and I generated it using this: https://mapscookiegettercli.readthedocs.io/en/latest/
import sys
import logging
from locationsharinglib import Service
root = logging.getLogger()
root.setLevel(logging.DEBUG)
handler = logging.StreamHandler(sys.stdout)
handler.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
handler.setFormatter(formatter)
root.addHandler(handler)
cookies_file = 'cookie'
google_email = 'ha.phrfpeixoto@gmail.com'
service = Service(cookies_file=cookies_file, authenticating_account=google_email)
pp = service.get_all_people()
for person in pp:
print(person)
I’m attaching my output here. Could you please provide any help debugging this?
About this issue
- Original URL
- State: closed
- Created 5 years ago
- Comments: 32 (17 by maintainers)
I think that I will wait for @macf0x to have a try at it and then I will release. I have tested it to my satisfaction so I am not really worried but it is always good to have a few more pair of eyes. Through the weekend I think.