Skip to content

Instantly share code, notes, and snippets.

@cn-2k
Last active November 17, 2021 12:17
Show Gist options
  • Save cn-2k/90d8c21537d737d104c31aef4ae7879d to your computer and use it in GitHub Desktop.
Save cn-2k/90d8c21537d737d104c31aef4ae7879d to your computer and use it in GitHub Desktop.
Axios request
// Making post request using axios (with headers too)
axios
.post('localhost', payload, {
headers: {
'Content-Type': 'application/json',
Authorization: 'Bearer ' + token,
},
})
.then(function (response) {
console.log(response)
})
.catch(error) {
console.log(error)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment