-
-
Save markau/722861c61337d77b37454aee11130418 to your computer and use it in GitHub Desktop.
Axios post method requesting with x-www-form-urlencoded content type
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const axios = require('axios') | |
... | |
const requestBody = { | |
name: 'Akexorcist', | |
age: '28', | |
position: 'Android Developer', | |
description: 'birthdate=25-12-1989&favourite=coding%20coding%20and%20coding&company=Nextzy%20Technologies&website=http://www.akexorcist.com/', | |
awesome: true | |
} | |
const config = { | |
headers: { | |
'Content-Type': 'application/x-www-form-urlencoded' | |
} | |
} | |
axios.post(url, requestBody, config) | |
.then((result) => { | |
// Do somthing | |
}) | |
.catch((err) => { | |
// Do somthing | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment