This is my JS code for the API
export const getUser = async (user) => {
    //Working
    const json = await fetch( "*****/username/getUser", {
      method: "POST",
      headers: {
        "Content-Type": "application/json",
      },
      body: JSON.stringify({
        user:user
      }),
    })
      .then((res) => {
        return res.json();
      })
      .catch((err) => {
        console.log("Error in getUser: " + err);
      });
    return json;
  };
Here is an attempt to make the request, which unfortunately return the authentication error.
    fetchUser.request("kirolosM")
    .then((result)=>{  
        console.log(result);
    }).catch((err)=>{console.log("Error ",err);})
The error
{
  "message": "Missing Authentication Token"
}
I have tested the API using postman and it is working as expexted.
 
     
    