Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

183
Views
How can I not make my express JS app cut off the query

This is my code

app.get("/get", (request, response) => {
    if (!request.query.url) {
        return response.json({
            status: "Error",
            data: "No URL provided"
        });
    };

    console.log(request.query.url)

    axios.get(request.query.url)
        .then(function (response2) {
            response.json(response2.data);
        })
        .catch(function (error) {
            console.log(error);

            response.json({
                status: "Error",
                data: error
            });
        });
});

When I tried getting this URL http://localhost/get?url=https://catalog.roblox.com/v1/search/items/details?Category=3&MaxPrice=1000&Keyword=DIE, the output only showed https://catalog.roblox.com/v1/search/items/details?Category=3 but other query are cut off

This is the output

Listening on port 80
https://catalog.roblox.com/v1/search/items/details?Category=3

Any way to solve this problem? I can't find any solution on the internet because I don't know how to explain this problem.

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!