ianjwhite99 / connected-car-python-sdk

Open-source Python SDK for Ford vehicles connected with Sync Connect (Ford Pass)
MIT License
73 stars 12 forks source link

Authentication changed? #74

Closed ryancornia closed 1 year ago

ryancornia commented 1 year ago

Describe the bug When trying to get an access token, an exception is thrown.

File "/.../.local/lib/python3.10/site-packages/connectedcar/connectedcar.py", line 105, in get_user_access_token response = self.session.post('https://api.mps.ford.com/api/token/v2/cat-with-ci-access-token', headers=headers, data=json.dumps(data)).json() File "/usr/lib/python3/dist-packages/requests/models.py", line 900, in json return complexjson.loads(self.text, **kwargs) File "/usr/lib/python3.10/json/init.py", line 346, in loads return _default_decoder.decode(s) File "/usr/lib/python3.10/json/decoder.py", line 337, in decode obj, end = self.raw_decode(s, idx=_w(s, 0).end()) File "/usr/lib/python3.10/json/decoder.py", line 355, in raw_decode raise JSONDecodeError("Expecting value", s, err.value) from None json.decoder.JSONDecodeError: Expecting value: line 2 column 1 (char 1)

To Reproduce Call client.get_user_access_token() with valid credentials.

Expected behavior An access token.

ryancornia commented 1 year ago

I found out from Ford their service has been down due to power outages and will be down for an unknown amount of time. I am assuming that is what is causing the authentication issue.