owncloud / pyocclient

ownCloud client library for Python
MIT License
294 stars 114 forks source link

login to server not possible (invalid token) #286

Open nnako opened 8 months ago

nnako commented 8 months ago

Hi,

I use pyocclient for some years to automate file management on a NextCloud server using a small RaspberryPi GNU/Linux computer. On this system I finally could not get a NextCloud Client to run properly. So I had to switch to manual use of the pyocclient module.

Since yesterday, the login of pyocclient fails, although neither the credentials deposited on the server nor the credentials given to the login() function changed. The error message looks like this:

>>> oc = owncloud.Client('<url>')
>>> oc.login('<user>', '<pass>')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/pi/APP__filesync/_venv/lib/python3.7/site-packages/owncloud/owncloud.py", line 362, in login
    self._update_capabilities()
  File "/home/pi/APP__filesync/_venv/lib/python3.7/site-packages/owncloud/owncloud.py", line 1934, in _update_capabilities
    tree = ET.fromstring(res.content)
  File "/usr/lib/python3.7/xml/etree/ElementTree.py", line 1315, in XML
    parser.feed(text)
xml.etree.ElementTree.ParseError: not well-formed (invalid token): line 1, column 9

Seems like the login requirements on the server side decided to not comply to the concept implemented within pyocclient anymore. Maybe because of a "silent" NextCloud update on the server side. With "proper" NextCloud clients, I can still login to the NextCloud server using the same login credentials.

Does anybody know about such new incompatibilities?

Thanks.

bigcat88 commented 7 months ago

Seems like the login requirements on the server side decided to not comply to the concept implemented within pyocclient anymore.

Did you tried nc_py_api?