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 Nov 8, 2024. It is now read-only.
When I send following request, the Email value received by the application is actually "[email protected]\n". "\n" is appended to the value and hence the request is rejected because it's invalid email format.
+ Request (application/x-www-form-urlencoded; charset=utf-8)
+ Body
firstName=a&lastName=b&[email protected]
+ Response 200 (application/json; charset=utf-8)
OK
The text was updated successfully, but these errors were encountered:
The only difference is that the old bug is being usually reported with text/plain content type and you use application/x-www-form-urlencoded. I'll make sure this thing gets higher in our priorities 😓
I'd like to address the problem. I added a comment explaining the situation: #67 (comment) If you have any ideas, I'd be very glad to discuss possible solutions.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I send following request, the Email value received by the application is actually "[email protected]\n". "\n" is appended to the value and hence the request is rejected because it's invalid email format.
The text was updated successfully, but these errors were encountered: