Reqwest return 400 bad request on some url, but attohttpc or ureq return status 200. #1976
Answered
by
seanmonstar
QuebeckerDoc
asked this question in
Q&A
-
I have this url : http://www.panteliscomedy.com/theintellectuals?format=rss. I am trying to make a podcast manager and this url does not work. Reqwest return an error 400 while attohttpc or ureq return a status 200 with the result of the feed rss. All the request are GET with no config options. Is there something i do not understand? |
Beta Was this translation helpful? Give feedback.
Answered by
seanmonstar
Sep 13, 2023
Replies: 1 comment 1 reply
-
Does that server require you to send a |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
QuebeckerDoc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does that server require you to send a
user-agent
header? reqwest doesn't send one automatically.