-
-
Notifications
You must be signed in to change notification settings - Fork 88
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
The URL encoding in the Python framework was not converted to a string #158
Labels
bug
Something isn't working
Comments
@rubbish822 which framework is that? |
Django. |
Fastapi |
ASGI or WSGI? |
WSGI |
ASGI also has the same problem. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
`curl -i localhost:8000/items/2023-12-22%3C--%3E2023-12-29
HTTP/1.1 200 OK
server: granian
content-length: 51
content-type: application/json
date: Thu, 28 Dec 2023 04:04:56 GMT
{"item_id":"2023-12-22%3C--%3E2023-12-29","q":null}`
`curl -i localhost:8000/items/2023-12-22%3C--%3E2023-12-29
HTTP/1.1 200 OK
date: Thu, 28 Dec 2023 04:05:20 GMT
server: uvicorn
content-length: 47
content-type: application/json
{"item_id":"2023-12-22<-->2023-12-29","q":null}`
The text was updated successfully, but these errors were encountered: