You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Firstly, thanks for this tool. I've just got my cloud drive mounted on my fedora system.
I had a couple of issues
(not your concern) pyacd has configs for www.amazon.com and www.amazon.jp, so I had to add www.amazon.co.uk to pyacd.init.py, and set ubid
ln 100. amazon_domain="www.amazon.co.uk"
ln 135 "www.amazon.co.uk": "ubid-acbuk",
edit session dictionary object to 'accept_terms' and set username in acd
ln 81-2 self.session.dict['agreed_with_terms']=True
self.session.username = self.email
unable to dump session to file as session dictionary is not serializable.
I commented out ln 83 to allow the cloud drive to mount
Would be interested in knowing if you've got a fix for (3)
Thanks again, Ian
Below is the error from json. Mounting proceeds if caching is commented out (ln 81-82)
Trying to login from cached sessionfile /tmp/acd_fuse/sessionfile
Cached session failed; trying auth login
Traceback (most recent call last):
File "/home/ian/bin/acd", line 464, in <module>
fs.main()
File "/home/ian/bin/acd", line 83, in main
json.dump(self.session.__dict__, sessfile)
File "/usr/lib64/python2.7/json/__init__.py", line 181, in dump
for chunk in iterable:
File "/usr/lib64/python2.7/json/encoder.py", line 428, in _iterencode
for chunk in _iterencode_dict(o, _current_indent_level):
File "/usr/lib64/python2.7/json/encoder.py", line 402, in _iterencode_dict
for chunk in chunks:
File "/usr/lib64/python2.7/json/encoder.py", line 436, in _iterencode
o = _default(o)
File "/usr/lib64/python2.7/json/encoder.py", line 178, in default
raise TypeError(repr(o) + " is not JSON serializable")
TypeError: <pyacd.auth.PicklableCookieJar[Cookie(version=0,
etc etc etc
]> is not JSON serializable
The text was updated successfully, but these errors were encountered:
Firstly, thanks for this tool. I've just got my cloud drive mounted on my fedora system.
I had a couple of issues
(not your concern) pyacd has configs for www.amazon.com and www.amazon.jp, so I had to add www.amazon.co.uk to pyacd.init.py, and set ubid
ln 100. amazon_domain="www.amazon.co.uk"
ln 135 "www.amazon.co.uk": "ubid-acbuk",
edit session dictionary object to 'accept_terms' and set username in acd
ln 81-2 self.session.dict['agreed_with_terms']=True
self.session.username = self.email
unable to dump session to file as session dictionary is not serializable.
I commented out ln 83 to allow the cloud drive to mount
Would be interested in knowing if you've got a fix for (3)
Thanks again, Ian
Below is the error from json. Mounting proceeds if caching is commented out (ln 81-82)
The text was updated successfully, but these errors were encountered: