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
You have a bug, with the cloudflare edge proxy, "normalizing", accidentally or intentionally, your URL. I think a patch I wrote and it was merged public to CORS-A fixed this parsing problem of "myapp.herokuapp.com/https:/foo.com/home"
In the file cors-anywhere.js the code
var location = parseURL(req.url.slice(1))
have some problem.When I send an axios request
The value of this
req.url.slice(1)
ishttp://localhost:38080/api/v5/configs/broker
When I send an other axios request
The value of this
req.url.slice(1)
ishttp:/5c62ur.natappfree.cc/mqtt/api/v5/configs/broker
,There is a/
missing afterhttp:
The text was updated successfully, but these errors were encountered: