'Login token Axios post request gets Unauthorized response

I am encountering some difficulties while trying to update some data in a mysql database. I am making an axios post request towards this api and inside the header I am sending the token that I receive from the backend after succesfull login. I will show here the apiDocumentation and the POST req that I am making because I really don't understand how to send the login token to have authorization to the data. Any help would very helpfull.

This is the backend apiDocumentation:

"post": {
    "summary": "Post new data row",
    "description": "Post new data row",
    "parameters": [
      {
        "name": "token",
        "in": "header",
        "required": true,
        "description": "token",
        "schema": {
          "type": "string"
        }
      }
    ],
    "requestBody": {
      "required": true,
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "data": {
                "type": "string",
                "example": "{\"test\":1}"
              },
              "type": {
                "type": "string",
                "example": "1"
              },
              "status": {
                "type": "integer",
                "example": 1
              }
            },
            "required": [
              "data",
              "type"
            ]
          }
        }
      }
    },

This is my Post request that I am doing in my code:

case "newsTitle" :{
            const {titlu} = this.state;
            data = JSON.stringify(titlu);
    const token = this.props.history.location.state.token;
    const headers = {
                //"token":token
                "Authorization": token,
                'Accept': '*/*',
                //"Content-Type": "multipart/form-data"
                "Content-Type":"application/json"

            };
        try {
            const response = await axios.post(url, data, headers);
            console.log("response::", response);


Sources

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

Source: Stack Overflow

Solution Source