Skip to content

Instantly share code, notes, and snippets.

@ahmedsakr
Last active August 9, 2020 01:34
Show Gist options
  • Save ahmedsakr/f9e42b56005603ded899423e1c78fbb9 to your computer and use it in GitHub Desktop.
Save ahmedsakr/f9e42b56005603ded899423e1c78fbb9 to your computer and use it in GitHub Desktop.
Handler for requesting a fortune
export function requestFortune() {
fetch('https://a9vymko126.execute-api.ca-central-1.amazonaws.com/test', { method: "GET" })
.then(response => response.json())
.then(data => document.getElementById('fortune-text').innerHTML = data)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment