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

197
Views
How to send a curl POST request in Javascript

how can I send the following curl POST request in javascript? can somebody help me?

curl -X POST "https://IP" -H "accept: */*" -H "Content-Type: text/plain" -H "Authorization: Bearer XXXXX" -d "ON"
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You can use this solution:

var xhr = new XMLHttpRequest();

xhr.open("POST", "https://IP", true);


xhr.setRequestHeader("Content-Type", "application/json");
xhr.setRequestHeader("accept", "*/*");
xhr.setRequestHeader("Authorization", "Bearer XXXXX");

xhr.onreadystatechange = function() { // Call a function when the state changes.
    if (xhr.readyState === XMLHttpRequest.DONE && xhr.status === 200) {
        // Request finished. Do processing here.
    }
}

xhr.send(); or xhr.send(body);


about 4 years ago · Juan Pablo Isaza Report
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!