'how to use mongodb atlas data api

enter image description here let headersList = {

 "api-key":

"U5H4A6FcMbEuZ33LP0ACQHP0ydkXkGLLJnDfNzQzCXTpzxL8QdJ8tH7NocITeZvv", "Content-Type": "application/json" }

let bodyContent = JSON.stringify({
    "collection":"users",
    "database":"college",
    "dataSource":"Cluster0",
    "projection": {}
});

let reqOptions = {
  url: "  https://data.mongodb-api.com/app/data-tfdur/endpoint/data/beta/action/findOne",
  method: "POST",
  headers: headersList,
  body: bodyContent,
}

axios.request(reqOptions).then(function (response) {
  console.log(response.data);
})

here its giving me the cors error


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source