-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
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
Header is out of order #2253
Comments
We don't manipulate headers in any of our flows. Please check if there is an interceptor that touches your headers or provides a minimal reproducible example. |
I debug the code and found the lib using I guess because it uses HashMap instead of LinkedHashMap |
This is the HTTP implementation inside
Cool. I guess you need a request to the Dart SDK then. Closing. |
Package
dio
Version
5.4.3
Operating-System
Android
Adapter
Default Dio
Output of
flutter doctor -v
No response
Dart Version
No response
Steps to Reproduce
I want to follow my backend rule of api header order. But I can't do that in dio
Expected Result
The server receives header in order as a,b,c,d
Actual Result
the header is out of order in the server as c,a,b,d
The text was updated successfully, but these errors were encountered: