We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
car.get_trips()
Describe the bug I just tried to pull info about our cars fleet and hit a problem with car.get_trips().
client.get_vehicles() return list of cars and I can get dashboard/odometer/fuel_level from it but no success with trips.
client.get_vehicles()
Last month it worked perfectly.
To Reproduce Steps to reproduce the behavior:
Calling trips = await car.get_trips(date_start, date_end, full_route=False) will fail with:
trips = await car.get_trips(date_start, date_end, full_route=False)
Exception has occurred: ToyotaApiError Request Failed. 403, { "status": { "messages": [ { "responseCode": "APIGW-403", "description": "Unauthorized", "detailedDescription": "invalid token could not authorize" } ] } }.
Expected behavior Retrieve list of trips for given car.
Additional context
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
I just tried to pull info about our cars fleet and hit a problem with
car.get_trips()
.client.get_vehicles()
return list of cars and I can get dashboard/odometer/fuel_level from it but no success with trips.Last month it worked perfectly.
To Reproduce
Steps to reproduce the behavior:
Calling
trips = await car.get_trips(date_start, date_end, full_route=False)
will fail with:Expected behavior
Retrieve list of trips for given car.
Additional context
The text was updated successfully, but these errors were encountered: