For example, I have this URL
https://store.epicgames.com/es-ES/p/dead-island-2--gold-edition
@app.get("/Datos/{CI}")
async def read_CI(CI: str):
return{"CI_Datos":CI}```
This is my curl
curl -X 'GET' \
'http://127.0.0.1:8000/Datos/%2F%2F' \
-H 'accept: application/json'
and I want the API to be able to get that URL.
I get error 404
when I pass a URL. I understand that the problem is the /
.