python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Build query string with param having multiple values for a reqwest Client
I'm trying to build a query string for reqwest Client using the builder's query() method. But one of the parameters has to be multiple values encoded like this
?dt=t&dt=at&dt=m
I can't figur...
JBart
Votes: 0
Answers: 2
Reading response into bytes takes forever
I am trying to download a file using reqwest. The response status is 200. At the line when I am trying to read the response as bytes response.bytes().await? it waits forever.
However, when I try to ma...

Surya
Votes: 0
Answers: 1
What is happening in the response body of my http request?
I have a post request that when sent in python through the requests or aiohttp library, responds as expected, but when the equivalent request is sent in rust through the reqwest library, is pure gibbe...

Shane Humphrey
Votes: 0
Answers: 0
why am i getting an error that is running for others in rust reqwest?
I an trying to build a webscraper via rust using reqwest library.
reqwest = "0.11.10"
scraper = "0.12.0"
I saw the example here: https://kadekillary.work/post/webscraping-rust/
I t...
itsme kali321
Votes: 0
Answers: 1