Skip to content

Instantly share code, notes, and snippets.

@irvingvjuarez
Created December 8, 2022 21:37
Show Gist options
  • Save irvingvjuarez/3d9b497efa32673fe8cdf8e3bd67bd04 to your computer and use it in GitHub Desktop.
Save irvingvjuarez/3d9b497efa32673fe8cdf8e3bd67bd04 to your computer and use it in GitHub Desktop.
Main structure to make a post fetch in js
const fetchConfig = {
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
method: "POST",
body: JSON.stringify(data)
}
fetch(API, fetchConfig)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment