Axios Pos Headers Code Example


Example 1: header in axios

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

Example 2: headers in 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"

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?