Skip to content

Instantly share code, notes, and snippets.

@vishwasnavadak
Created November 18, 2018 16:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vishwasnavadak/c4dd9f7a09f52791be2cf904295336c3 to your computer and use it in GitHub Desktop.
Save vishwasnavadak/c4dd9f7a09f52791be2cf904295336c3 to your computer and use it in GitHub Desktop.
Add function to send data to AWS API-GATEWAY
export function addTodo(item){
var request = fetch(`API-URL?desc=${item}`,{
method: 'POST',
headers:{
'Content-Type': 'application/json',
'x-api-key': 'API-KEY'
}
})
.then(response => response.json())
.then((data) => { return data; } )
.catch(error => console.log('Error while adding:', error));
return ({
type:ActionTypes.ADD_TODO,
payload:request
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment