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
{{ message }}
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
It looks like the default behaviour of requests is to put the access_token into the POST body, which will lead to authentication failures if a Directions or Map Matching request is submitted via POST.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The Directions and Map Matching APIs support submitting requests via HTTP POST when the size of the request is large.
Per https://docs.mapbox.com/api/navigation/#using-http-post, they need the
access_token
to be part of the URL string, and all other parameters to be part of the POST body.It looks like the default behaviour of
requests
is to put theaccess_token
into the POST body, which will lead to authentication failures if a Directions or Map Matching request is submitted via POST.The text was updated successfully, but these errors were encountered: