“header di Axios” Kode Jawaban

header di Axios

axios.post('url', {"body":data}, {
    headers: {
    'Content-Type': 'application/json'
    }
  }
)
Salo Hopeless

cara mengirim header di axios

const username = ''
const password = ''

const token = Buffer.from(`${username}:${password}`, 'utf8').toString('base64')

const url = 'https://...'

axios.post(url, {
  headers: {
    'Authorization': `Basic ${token}`
  }
})
Creepy Copperhead

Posting Axios dengan header

// Send a POST request
axios({
  method: 'post',
  url: '/user/12345',
  data: {
    firstName: 'Fred',
    lastName: 'Flintstone'
  },
  headers: {'Authorization': 'Bearer ...'}
});
Victor Grk

Contoh Header Axios.Post

axios.post(
'https://example.com/postSomething', 
{ // this is the body
 email: varEmail, 
 password: varPassword
},
{
  headers: {
    Authorization: 'Bearer ' + varToken
  }
})
JoseHdez

header di Axios.get

const axios = require('axios');

// httpbin.org gives you the headers in the response
// body `res.data`.
// See: https://httpbin.org/#/HTTP_Methods/get_get
const res = await axios.get('https://httpbin.org/get', {
  headers: {
    'Test-Header': 'test-value'
  }
});

res.data.headers['Test-Header']; // "test-value"
Courageous Cat

Axios header

  const reponse = await axios
    .post("https://sozaeng.herokuapp.com/inspection", data, {
      headers: {
        "x-access-token":
          "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjYyNDliODZmMGM1YzVjMzY0N2QwM2Q2OSIsImlhdCI6MTY0OTAwMzMzNCwiZXhwIjoxNjQ5MDg5NzM0fQ.tTIYzRcbm06FQ3L10PbXydWtxHFtTovGGeYlBd7IL_Y",
        "Content-Type": "application/json",
      },
    })
    .catch((err) => {
      console.log(err, "Mission Object Failed");
    });
Blue Baboon

Jawaban yang mirip dengan “header di Axios”

Pertanyaan yang mirip dengan “header di Axios”

Lebih banyak jawaban terkait untuk “header di Axios” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya