const createPostRequest = async () => {
try{
const { data } = await axios.post(url, body_data, {
headers: {
'Authorization': `Basic ${token}`
},
})
console.log(data)
} catch (error) {
console.log(error)
}
}
createPostRequest();
import requests
import logging
API_KEY = "xxxxxxxxxxxxxxxxxxxxxxx"
API_ENDPOINT = "https://sample.endpoint.php"
try:
# your source data eg format
source_data = {"key":list(values)}
# header to be sent to api
headers = {"api-key" : API_KEY}
# sending post request and saving response as response object
r = requests.post(url = API_ENDPOINT, json=source_data, headers=headers)
logging.info("Data push was completed with status code :"+str(r.status_code))
except requests.exceptions.RequestException as e:
logging.info("error occured : "+ str(e) +"
status code:"+str(r.status_code))
const configurationObject = {
method: "POST",
headers: {
"Content-Type": "application/json",
Accept: "application/json",
},
body: JSON.stringify({
dogName: "Byron",
dogBreed: "Poodle",
}),
};
fetch("http://localhost:3000/dogs", configurationObject);