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
When executing route_v8, avoid, exclude and truck parameters are ignored.
Only first key from argument dict is taken from those arguments [1], [2], [3]
Arguments are formatted incorrectly. This results in being silently ignored by the API. Calling route_v8(transport_mode, origin, dest, truck={"length": ["15000"]}) creates url parameter ...&truck={'height': '15000'} while it should be ...&truck[height]=15000
The text was updated successfully, but these errors were encountered:
When executing
route_v8
,avoid
,exclude
andtruck
parameters are ignored.route_v8(transport_mode, origin, dest, truck={"length": ["15000"]})
creates url parameter...&truck={'height': '15000'}
while it should be...&truck[height]=15000
The text was updated successfully, but these errors were encountered: